edit static pages in backend
This commit is contained in:
parent
e771c4921f
commit
783ac823ba
59 changed files with 1644 additions and 761 deletions
|
@ -1,44 +0,0 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
|
||||
<h1 class="title">Documents</h1>
|
||||
|
||||
<br><br>
|
||||
|
||||
<table class="pure-table pure-table-horizontal">
|
||||
|
||||
<thead>
|
||||
<th>id</th>
|
||||
<th>document type</th>
|
||||
<!-- <th>Category</th>
|
||||
<th>Shelf</th> -->
|
||||
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
|
||||
@foreach($documents as $document)
|
||||
|
||||
<tr>
|
||||
<td>{{ $document->id }}</td>
|
||||
<td>{{ $document->type }}</td>
|
||||
<!-- <td>
|
||||
if($book->stock > 0)
|
||||
Available
|
||||
elseif($book->stock == 0)
|
||||
-
|
||||
endif
|
||||
</td> -->
|
||||
</tr>
|
||||
|
||||
@endforeach
|
||||
|
||||
</tbody>
|
||||
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
@stop
|
|
@ -1,33 +0,0 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
|
||||
<div>
|
||||
<div id="titlemain-wrapper">
|
||||
<div class="frontdoor_pagination">
|
||||
{{-- <a id="pagination-link-hitlist" href="{{ route('settings.document') }}">BACK</a> --}}
|
||||
<a href="{{ route('documents') }}" class="pure-button">
|
||||
<span class="glyphicon glyphicon-chevron-left" ></span> BACK
|
||||
</a>
|
||||
|
||||
</div>
|
||||
@foreach ($document->titles as $title)
|
||||
<h2 class="titlemain"> {{ $title->value }}</h2>
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
<div id="result-data">
|
||||
<div id="abstract">
|
||||
<ul>
|
||||
@foreach ($document->abstracts as $abstract)
|
||||
<li class="abstract preserve-spaces"> {{ $abstract->value }}</p>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
@stop
|
|
@ -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
|
|
@ -1,55 +0,0 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
@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-u-1 pure-u-md-2-3">
|
||||
<div class="content">
|
||||
<h1>Kontakt</h1>
|
||||
<div id="simplecontact">
|
||||
{!! Form::open(array('class' => 'pure-form pure-form-stacked')) !!}
|
||||
|
||||
<fieldset>
|
||||
<div class="pure-control-group">
|
||||
{!! Form::label('name', 'Your Name') !!}
|
||||
{!! Form::text('name', null, ['class' => 'pure-input-1']) !!}
|
||||
<span class="pure-form-message-inline">This is a required field.</span>
|
||||
</div>
|
||||
|
||||
<div class="pure-control-group">
|
||||
{!! Form::label('email', 'E-mail Address') !!}
|
||||
{!! Form::text('email', null, ['class' => 'pure-input-1']) !!}
|
||||
</div>
|
||||
|
||||
<div class="pure-control-group">
|
||||
{!! Form::label('msg', 'Message') !!}
|
||||
{!! Form::textarea('msg', null, ['class' => 'pure-input-1', 'placeholder' => "Enter something here..."]) !!}
|
||||
</div>
|
||||
|
||||
<div class="pure-controls">
|
||||
{!! Form::submit('Send', ['class' => 'pure-button pure-button-primary']) !!}
|
||||
</div>
|
||||
|
||||
</fieldset>
|
||||
|
||||
{!! Form::close() !!}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="pure-u-1 pure-u-md-1-3">
|
||||
<div class="sidebar">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@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
|
|
@ -1,42 +0,0 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
@section('slider')
|
||||
<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,36 +0,0 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
@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>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@endsection
|
|
@ -1,50 +0,0 @@
|
|||
@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="documents published in year <?= $year ?>" href="{{ URL::route('sitelinks.list',['year' => $year]) }}"><?= $year ?>
|
||||
</a>
|
||||
<?php endforeach; ?>
|
||||
</span>
|
||||
|
||||
|
||||
<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('document.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->getFullName() }}</em>
|
||||
<br />
|
||||
@endforeach
|
||||
|
||||
@foreach ($document->titles as $title)
|
||||
<em>Main Title: {{ $title->value }}</em>
|
||||
<br />
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</li><?php endforeach; ?>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue