- 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,24 +0,0 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
@section('title', Lang::get('resources.home_about_pagetitle'))
|
||||
|
||||
@section('content')
|
||||
|
||||
<div class="pure-g">
|
||||
|
||||
<div class="pure-u-1 pure-u-md-2-3">
|
||||
<div class="content">
|
||||
<h1>
|
||||
@lang('resources.home_about_title')
|
||||
</h1>
|
||||
|
||||
<div>
|
||||
<p>
|
||||
@lang('resources.home_about_content')
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@endsection
|
|
@ -3,14 +3,8 @@
|
|||
@section('title', Lang::get('resources.home_index_contact_pagetitle'))
|
||||
|
||||
@section('content')
|
||||
<!--<div class="pure-g content">
|
||||
<div class="pure-u-1 content lead">
|
||||
<h1 class="title"> @lang('resources.home_index_contact_title')</h1>
|
||||
</div>
|
||||
</div>-->
|
||||
|
||||
<div class="pure-g">
|
||||
|
||||
{{-- <div class="pure-g">
|
||||
<div class="pure-u-1 pure-u-md-2-3">
|
||||
<div class="content">
|
||||
<h1>Kontakt</h1>
|
||||
|
@ -49,7 +43,74 @@
|
|||
<div class="sidebar">
|
||||
</div>
|
||||
</div>
|
||||
</div> --}}
|
||||
|
||||
</div>
|
||||
{{-- <section data-sr id="contact" class="contact u-full-width">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="two-thirds column">
|
||||
<h3 class="separator">Get in touch</h3>
|
||||
<h4>
|
||||
Want to keep updated or need further information?
|
||||
</h4>
|
||||
</div>
|
||||
<div class="one-third column">
|
||||
<div class="sidebar">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section> --}}
|
||||
<!-- Contact Us -->
|
||||
<section data-sr class="contact-us u-full-width">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
<h4>
|
||||
Want to keep updated or need further information?
|
||||
</h4>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="four columns contact-us-details">
|
||||
<h3>Our Location</h3>
|
||||
<h5>
|
||||
Neulinggasse 38 <br />
|
||||
1030 Wien <br />
|
||||
+43-1-7125674 <br />
|
||||
</h5>
|
||||
<ul class="social-links">
|
||||
<li>
|
||||
<a href="https://twitter.com/GeologischeBA" target="_blank">
|
||||
<i class="fab fa-twitter"></i>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.facebook.com/geologie.ac.at" target="_blank">
|
||||
<i class="fab fa-facebook"></i>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="eight columns contact-us-form">
|
||||
<form>
|
||||
<div class="row">
|
||||
<div class="six columns">
|
||||
<input class="u-full-width" type="text" placeholder="Name" id="nameInput">
|
||||
</div>
|
||||
<div class="six columns">
|
||||
<input class="u-full-width" type="email" placeholder="Email" id="emailInput">
|
||||
</div>
|
||||
</div>
|
||||
<textarea class="u-full-width" placeholder="Message" id="messageInput"></textarea>
|
||||
<input class="button u-pull-right" type="submit" value="Send">
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
32
resources/views/frontend/home/help.blade.php
Normal file
32
resources/views/frontend/home/help.blade.php
Normal file
|
@ -0,0 +1,32 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
{{-- @section('title', Lang::get('resources.home_about_pagetitle')) --}}
|
||||
|
||||
@section('content')
|
||||
|
||||
<!-- Help -->
|
||||
<section data-sr id="help" class="help u-full-width">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="twelve columns">
|
||||
<h3 class="separator">HELP</h3>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<ul class="help-items">
|
||||
<li class="four columns">
|
||||
About RDR
|
||||
</li>
|
||||
<li class="four columns">
|
||||
Requirements for the Use of RDR
|
||||
</li>
|
||||
<li class="four columns">
|
||||
Upload Data
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
|
@ -1,20 +0,0 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
@section('title', Lang::get('resources.home_index_imprint_pagetitle'))
|
||||
|
||||
@section('content')
|
||||
|
||||
|
||||
<h1>
|
||||
|
||||
@lang('resources.home_index_imprint_title')
|
||||
|
||||
</h1>
|
||||
|
||||
<div>
|
||||
<p>
|
||||
@lang('resources.help_content_imprint')
|
||||
</p>
|
||||
</div>
|
||||
|
||||
@endsection
|
42
resources/views/frontend/home/index.blade.old.php
Normal file
42
resources/views/frontend/home/index.blade.old.php
Normal file
|
@ -0,0 +1,42 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
@section('hero')
|
||||
<div class="pure-g slider">
|
||||
<div class="container">
|
||||
<div class="pure-g">
|
||||
<div class="pure-u-1">
|
||||
<h2 class="brand-tagline">
|
||||
<strong>RDR is a data repository</strong> for the research community with secure preservation and data publication.
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<div class="pure-g">
|
||||
<div class="pure-u-1 lead">
|
||||
<div class="content">
|
||||
<h1 class="title">DATA RESEARCH REPOSITORY</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="pure-g content two-col">
|
||||
<div class="pure-u-1-2">
|
||||
<div class="box box-l">
|
||||
<!--<h2>Title</h2>-->
|
||||
<p> @lang('resources.home_index_welcome')</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="pure-u-1-2">
|
||||
<div class="box box-r">
|
||||
<p> @lang('resources.home_index_instructions')</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
|
@ -1,42 +1,242 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
@section('hero')
|
||||
<div class="pure-g slider">
|
||||
<div class="container">
|
||||
<div class="pure-g">
|
||||
<div class="pure-u-1">
|
||||
<h2 class="brand-tagline">
|
||||
<strong>RDR is a data repository</strong> for the research community with secure preservation and data publication.
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<!-- Hero -->
|
||||
<section id="hero" class="hero u-full-width">
|
||||
<div class="hero-image"></div>
|
||||
<div class="container centered">
|
||||
<div class="twelve columns">
|
||||
<h1 class="separator">Research Data Repository</h1>
|
||||
<h2>
|
||||
A data repository for the research community with secure preservation and data publication.
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<div class="pure-g">
|
||||
<div class="pure-u-1 lead">
|
||||
<div class="content">
|
||||
<h1 class="title">DATA RESEARCH REPOSITORY</h1>
|
||||
</div>
|
||||
<!-- Introduction -->
|
||||
<section data-sr id="introduction" class="introduction u-full-width">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="twelve columns">
|
||||
<h3 class="separator">Introduction RDR</h3>
|
||||
<h4>
|
||||
RDR offers institutions and researchers a comprehensive archiving
|
||||
and publishing service with reliable storage options for backing up
|
||||
and managing research data. With RDR you can promote research data
|
||||
management at your institution and make an important contribution to improve
|
||||
availability, long-term preservation and independent publication of your research data.
|
||||
</h4>
|
||||
<p>
|
||||
The use of RDR as a data centre for archiving and/or publishing research data is invoiced annually.
|
||||
The invoice consists of a basic annual contract fee and a usage-related fee.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="pure-g content two-col">
|
||||
<div class="pure-u-1-2">
|
||||
<div class="box box-l">
|
||||
<!--<h2>Title</h2>-->
|
||||
<p> @lang('resources.home_index_welcome')</p>
|
||||
<!-- Work -->
|
||||
<section data-sr id="work" class="work u-full-width">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="twelve columns">
|
||||
<h3 class="separator">RDR SERVICES</h3>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<ul class="work-items isotope js-isotope u-cf">
|
||||
<li class="four columns isotope-item design ui">
|
||||
<!-- <img src="images/portfolio/work_1.svg"> -->
|
||||
<div class="work-front">
|
||||
<div class="vertical-centered">
|
||||
<h3>Data Archival</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="work-detail">
|
||||
<div class="vertical-centered">
|
||||
<p class="separator orange">Data Archival</p>
|
||||
<p>
|
||||
RDR provides format-independent archiving services for data protection.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="four columns isotope-item branding web-design">
|
||||
<!-- <img src="images/portfolio/work_2.svg"> -->
|
||||
<div class="work-front">
|
||||
<div class="vertical-centered">
|
||||
<h3>Data Publication</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="work-detail">
|
||||
<div class="vertical-centered">
|
||||
<p class="separator orange">Data Publication</p>
|
||||
<p>
|
||||
With RDR you can publish research data,
|
||||
so that your data is citable and reusable.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="four columns isotope-item mobile ui branding">
|
||||
<!-- <img src="images/portfolio/work_3.svg"> -->
|
||||
<div class="work-front">
|
||||
<div class="vertical-centered">
|
||||
<h3>Peer Review</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="work-detail">
|
||||
<div class="vertical-centered">
|
||||
<p class="separator orange">Peer Review</p>
|
||||
<p>
|
||||
All RDR datasets undergo a full, efficient peer review process.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Help -->
|
||||
<section data-sr id="help" class="help u-full-width featured-bg-image">
|
||||
<h4 class="centered">
|
||||
<button class="button inverted">We're here to help!</button>
|
||||
</h4>
|
||||
</section>
|
||||
|
||||
<!-- Clients -->
|
||||
<section data-sr id="clients" class="clients u-full-width">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<h3 class="separator">Cooperation Partners</h3>
|
||||
</div>
|
||||
<ul class="clients u-full-width u-cf">
|
||||
<li>
|
||||
<img src="images/clients/logo_zamg.png" alt="Zamg Client">
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- About -->
|
||||
<section data-sr id="about" class="about u-full-width">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="twelve columns">
|
||||
<h3 class="separator">About us</h3>
|
||||
<h4>
|
||||
RDR focuses on disciplines who do not have a tradition
|
||||
of data sharing thus ensuring better availability,
|
||||
sustainable preservation and (independent) publication
|
||||
capacity of their research data.
|
||||
</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Why us -->
|
||||
<section data-sr id="why-us" class="why u-full-width">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="twelve columns">
|
||||
<h3 class="separator">Why choose us</h3>
|
||||
<h4>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut
|
||||
labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
|
||||
laboris.</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<ul class="services">
|
||||
<li class="four columns">
|
||||
<div class="service-image">
|
||||
<img src="images/services/iphone5c.png">
|
||||
</div>
|
||||
<h5>App Design</h5>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
|
||||
ilabore et dolore.</p>
|
||||
</li>
|
||||
<li class="four columns">
|
||||
<div class="service-image">
|
||||
<img src="images/services/ipad_air.png">
|
||||
</div>
|
||||
<h5>Responsive Layout</h5>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
|
||||
ilabore et dolore.</p>
|
||||
</li>
|
||||
<li class="four columns">
|
||||
<div class="service-image">
|
||||
<img src="images/services/macbook_pro.png">
|
||||
</div>
|
||||
<h5>Pixel Perfect design</h5>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
|
||||
ilabore et dolore.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Contact -->
|
||||
<section data-sr id="contact" class="contact u-full-width">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="twelve columns">
|
||||
<h3 class="separator">Get in touch</h3>
|
||||
<h4>
|
||||
Want to keep updated or need further information?
|
||||
</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Contact Us -->
|
||||
<section data-sr class="container contact-us u-full-width u-max-full-width">
|
||||
<div class="row">
|
||||
<div class="four columns contact-us-details">
|
||||
<h3>Our Location</h3>
|
||||
<h5>
|
||||
Neulinggasse 38 <br />
|
||||
1030 Wien <br />
|
||||
+43-1-7125674 <br />
|
||||
</h5>
|
||||
<ul class="social-links">
|
||||
<li>
|
||||
<a href="https://twitter.com/GeologischeBA" target="_blank">
|
||||
<i class="fab fa-twitter"></i>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.facebook.com/geologie.ac.at" target="_blank">
|
||||
<i class="fab fa-facebook"></i>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="eight columns contact-us-form">
|
||||
<form>
|
||||
<div class="row">
|
||||
<div class="six columns">
|
||||
<input class="u-full-width" type="text" placeholder="Name" id="nameInput">
|
||||
</div>
|
||||
<div class="six columns">
|
||||
<input class="u-full-width" type="email" placeholder="Email" id="emailInput">
|
||||
</div>
|
||||
</div>
|
||||
<textarea class="u-full-width" placeholder="Message" id="messageInput"></textarea>
|
||||
<input class="button u-pull-right" type="submit" value="Send">
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="pure-u-1-2">
|
||||
<div class="box box-r">
|
||||
<p> @lang('resources.home_index_instructions')</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
||||
@endsection
|
29
resources/views/frontend/home/intro.blade.php
Normal file
29
resources/views/frontend/home/intro.blade.php
Normal file
|
@ -0,0 +1,29 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
{{-- @section('title', Lang::get('resources.home_about_pagetitle')) --}}
|
||||
|
||||
@section('content')
|
||||
|
||||
<!-- Introduction -->
|
||||
<section data-sr id="introduction" class="introduction u-full-width">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="twelve columns">
|
||||
<h3 class="separator">Introduction RDR</h3>
|
||||
<h4>
|
||||
RDR offers institutions and researchers a comprehensive archiving
|
||||
and publishing service with reliable storage options for backing up
|
||||
and managing research data. With RDR you can promote research data
|
||||
management at your institution and make an important contribution to improve
|
||||
availability, long-term preservation and independent publication of your research data.
|
||||
</h4>
|
||||
<p>
|
||||
The use of RDR as a data centre for archiving and/or publishing research data is invoiced annually.
|
||||
The invoice consists of a basic annual contract fee and a usage-related fee.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
|
@ -1,36 +1,39 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
@section('title', Lang::get('resources.home_news_pagetitle'))
|
||||
{{-- @section('title', Lang::get('resources.home_news_pagetitle')) --}}
|
||||
|
||||
@section('content')
|
||||
|
||||
<div class="pure-g">
|
||||
|
||||
<div class="pure-u-1 pure-u-md-3-3">
|
||||
<div class="content">
|
||||
<!--<h1>
|
||||
@lang('resources.home_news_title')
|
||||
</h1>-->
|
||||
<h2>
|
||||
<strong>RDR included in re3data.org list of research data repositories </strong>
|
||||
</h2>
|
||||
<h4>Published: 27.07.2019</h4>
|
||||
<p>
|
||||
re3data.org is a global registry of research data repositories. The registry covers research data repositories from
|
||||
different academic disciplines. re3data.org presents repositories for the permanent storage and access to datasets
|
||||
for researchers, funding bodies, publishers and academic institutions. re3data.org aims to promote a culture of
|
||||
sharing and increased access to research data.
|
||||
</p>
|
||||
<p>
|
||||
re3data.org helps researchers to find appropriate repositories for the storage and access of research data.
|
||||
Further, it can be used by funding organisations to promote permanent access to research data from their research projects.
|
||||
In addition re3data.org offers publishers and academic institutions a tool for the identification of research data repositories
|
||||
where scientists can deposit their data.
|
||||
</p>
|
||||
|
||||
<section id="about" class="u-full-width">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="twelve columns">
|
||||
<h3 class="separator">
|
||||
@lang('resources.home_news_pagetitle')
|
||||
</h3>
|
||||
<h4>Published: 27.07.2019</h4>
|
||||
<p>
|
||||
re3data.org is a global registry of research data repositories. The registry covers research data
|
||||
repositories from
|
||||
different academic disciplines. re3data.org presents repositories for the permanent storage and
|
||||
access to datasets
|
||||
for researchers, funding bodies, publishers and academic institutions. re3data.org aims to promote a
|
||||
culture of
|
||||
sharing and increased access to research data.
|
||||
</p>
|
||||
<p>
|
||||
re3data.org helps researchers to find appropriate repositories for the storage and access of
|
||||
research data.
|
||||
Further, it can be used by funding organisations to promote permanent access to research data from
|
||||
their research projects.
|
||||
In addition re3data.org offers publishers and academic institutions a tool for the identification of
|
||||
research data repositories
|
||||
where scientists can deposit their data.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
72
resources/views/frontend/home/services.blade.php
Normal file
72
resources/views/frontend/home/services.blade.php
Normal file
|
@ -0,0 +1,72 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
{{-- @section('title', Lang::get('resources.home_about_pagetitle')) --}}
|
||||
|
||||
@section('content')
|
||||
|
||||
<!-- Work -->
|
||||
<section data-sr id="work" class="work u-full-width">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="twelve columns">
|
||||
<h3 class="separator">RDR SERVICES</h3>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<ul class="work-items isotope js-isotope u-cf">
|
||||
<li class="four columns isotope-item design ui">
|
||||
<!-- <img src="images/portfolio/work_1.svg"> -->
|
||||
<div class="work-front">
|
||||
<div class="vertical-centered">
|
||||
<h3>Data Archival</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="work-detail">
|
||||
<div class="vertical-centered">
|
||||
<p class="separator orange">Data Archival</p>
|
||||
<p>
|
||||
RDR provides format-independent archiving services for data protection.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="four columns isotope-item branding web-design">
|
||||
<!-- <img src="images/portfolio/work_2.svg"> -->
|
||||
<div class="work-front">
|
||||
<div class="vertical-centered">
|
||||
<h3>Data Publication</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="work-detail">
|
||||
<div class="vertical-centered">
|
||||
<p class="separator orange">Data Publication</p>
|
||||
<p>
|
||||
With RDR you can publish research data,
|
||||
so that your data is citable and reusable.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="four columns isotope-item mobile ui branding">
|
||||
<!-- <img src="images/portfolio/work_3.svg"> -->
|
||||
<div class="work-front">
|
||||
<div class="vertical-centered">
|
||||
<h3>Peer Review</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="work-detail">
|
||||
<div class="vertical-centered">
|
||||
<p class="separator orange">Peer Review</p>
|
||||
<p>
|
||||
All RDR datasets undergo a full, efficient peer review process.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
|
@ -1,16 +1,22 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="content">
|
||||
<h1>
|
||||
{!! $page->title !!}
|
||||
</h1>
|
||||
<section id="sitelinks" class="normal u-full-width">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="twelve columns">
|
||||
<h1>
|
||||
{!! $page->title !!}
|
||||
</h1>
|
||||
|
||||
<div>
|
||||
<p>
|
||||
{!! $page->description !!}
|
||||
</p>
|
||||
<div>
|
||||
<p>
|
||||
{!! $page->description !!}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
|
@ -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