- new frontend style
- GetRecord also with metadata - no error during publishing - more home views (etc. help, introduction) - help image compressed (for web usage)
This commit is contained in:
parent
720aa57810
commit
d9e295f039
27 changed files with 956 additions and 343 deletions
|
@ -1,50 +1,57 @@
|
|||
@extends('layouts.app')
|
||||
@extends('layouts.app')
|
||||
@section('content')
|
||||
<div class="pure-g">
|
||||
<div class="pure-u-1 pure-u-md-2-3">
|
||||
<div class="content">
|
||||
<h1 class="title">Sitelinks for Web Crawlers</h1>
|
||||
|
||||
<span>
|
||||
<?php foreach ($years as $year) : ?>
|
||||
<a title="datasets published in year <?= $year ?>" href="{{ URL::route('frontend.sitelinks.list',['year' => $year]) }}"><?= $year ?>
|
||||
</a>
|
||||
<?php endforeach; ?>
|
||||
</span>
|
||||
<section id="sitelinks" class="normal u-full-width">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="twelve columns">
|
||||
<div class="content">
|
||||
<h1 class="title">Sitelinks for Web Crawlers</h1>
|
||||
|
||||
<div class="posts">
|
||||
<ol>
|
||||
<?php foreach ($documents as $document) : ?>
|
||||
<li>
|
||||
<section class="post">
|
||||
<header class="post-header">
|
||||
<h2 class="post-title">
|
||||
<a href="{{ URL::route('frontend.dataset.show',['id' =>$document->id]) }}"><?= $document->type; $document->id; ?>
|
||||
</a>
|
||||
</h2>
|
||||
</header>
|
||||
<div class="blog-meta">
|
||||
<?= $document->server_date_published->toDayDateTimeString() ?>
|
||||
</div>
|
||||
<div class="post-description">
|
||||
@foreach ($document->authors as $author)
|
||||
<em>Author: {{ $author->full_name }}</em>
|
||||
<br />
|
||||
@endforeach
|
||||
@foreach ($document->titles as $title)
|
||||
<em>Main Title: {{ $title->value }}</em>
|
||||
<br />
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</li>
|
||||
<span>
|
||||
<?php foreach ($years as $year) : ?>
|
||||
<a title="datasets published in year <?= $year ?>"
|
||||
href="{{ URL::route('frontend.sitelinks.list',['year' => $year]) }}"><?= $year ?>
|
||||
</a>
|
||||
<?php endforeach; ?>
|
||||
</ol>
|
||||
</span>
|
||||
|
||||
<div class="posts">
|
||||
<ol>
|
||||
<?php foreach ($documents as $document) : ?>
|
||||
<li>
|
||||
<div class="post">
|
||||
<header class="post-header">
|
||||
<h2 class="post-title">
|
||||
<a href="{{ URL::route('frontend.dataset.show',['id' =>$document->id]) }}"><?= $document->type; $document->id; ?>
|
||||
</a>
|
||||
</h2>
|
||||
</header>
|
||||
<div class="blog-meta">
|
||||
<?= $document->server_date_published->toDayDateTimeString() ?>
|
||||
</div>
|
||||
<div class="post-description">
|
||||
@foreach ($document->authors as $author)
|
||||
<em>Author: {{ $author->full_name }}</em>
|
||||
<br />
|
||||
@endforeach
|
||||
@foreach ($document->titles as $title)
|
||||
<em>Main Title: {{ $title->value }}</em>
|
||||
<br />
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue