- 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
|
@ -74,9 +74,9 @@ class HomeController extends Controller
|
||||||
*
|
*
|
||||||
* @return \Illuminate\Http\Response
|
* @return \Illuminate\Http\Response
|
||||||
*/
|
*/
|
||||||
public function about(): View
|
public function intro(): View
|
||||||
{
|
{
|
||||||
return view('frontend.home.about');
|
return view('frontend.home.intro');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -89,6 +89,25 @@ class HomeController extends Controller
|
||||||
return view('frontend.home.news');
|
return view('frontend.home.news');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the application dashboard.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Http\Response
|
||||||
|
*/
|
||||||
|
public function services(): View
|
||||||
|
{
|
||||||
|
return view('frontend.home.services');
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Show the application dashboard.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Http\Response
|
||||||
|
*/
|
||||||
|
public function help(): View
|
||||||
|
{
|
||||||
|
return view('frontend.home.help');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* show page by $page_slug.
|
* show page by $page_slug.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -182,7 +182,11 @@ class RequestController extends Controller
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$metadataPrefix = $oaiRequest['metadataPrefix'];
|
$metadataPrefix = null;
|
||||||
|
if (true === array_key_exists('metadataPrefix', $oaiRequest)) {
|
||||||
|
$metadataPrefix = $oaiRequest['metadataPrefix'];
|
||||||
|
}
|
||||||
|
$this->_proc->setParameter('', 'oai_metadataPrefix', $metadataPrefix);
|
||||||
|
|
||||||
// do not deliver datasets which are restricted by document state
|
// do not deliver datasets which are restricted by document state
|
||||||
if (is_null($dataset)
|
if (is_null($dataset)
|
||||||
|
|
|
@ -20,6 +20,7 @@ use Illuminate\View\View;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
// use App\Models\Coverage;
|
// use App\Models\Coverage;
|
||||||
use Illuminate\Support\Facades\Validator;
|
use Illuminate\Support\Facades\Validator;
|
||||||
|
use Carbon\Carbon;
|
||||||
|
|
||||||
class EditorController extends Controller
|
class EditorController extends Controller
|
||||||
{
|
{
|
||||||
|
@ -372,13 +373,12 @@ class EditorController extends Controller
|
||||||
$dataset = Dataset::findOrFail($id);
|
$dataset = Dataset::findOrFail($id);
|
||||||
$input = $request->all();
|
$input = $request->all();
|
||||||
$input['server_state'] = 'published';
|
$input['server_state'] = 'published';
|
||||||
$time = new \Illuminate\Support\Carbon();
|
$input['server_date_published'] = Carbon::now()->toDateTimeString(); // Produces something like "2019-03-11 12:25:00"
|
||||||
$input['server_date_published'] = $time;
|
|
||||||
|
|
||||||
if ($dataset->update($input)) {
|
if ($dataset->update($input)) {
|
||||||
// event(new PageUpdated($page));
|
// event(new PageUpdated($page));
|
||||||
return redirect()
|
return redirect()
|
||||||
->route('publish.workflow.publish.index')
|
->route('publish.workflow.editor.index')
|
||||||
->with('flash_message', 'You have successfully published the dataset!');
|
->with('flash_message', 'You have successfully published the dataset!');
|
||||||
}
|
}
|
||||||
throw new GeneralException(trans('exceptions.publish.publish.update_error'));
|
throw new GeneralException(trans('exceptions.publish.publish.update_error'));
|
||||||
|
|
|
@ -32,6 +32,7 @@ class Dataset extends Model
|
||||||
'type',
|
'type',
|
||||||
'language',
|
'language',
|
||||||
'server_state',
|
'server_state',
|
||||||
|
'server_date_published',
|
||||||
'creating_corporation',
|
'creating_corporation',
|
||||||
'project_id',
|
'project_id',
|
||||||
'embargo_date',
|
'embargo_date',
|
||||||
|
|
|
@ -9,5 +9,5 @@ return [
|
||||||
'core' => env('SOLR_CORE', 'rdr_data')
|
'core' => env('SOLR_CORE', 'rdr_data')
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
'xsltfile' => "public/solr.xslt"
|
'xsltfile' => "solr.xslt"
|
||||||
];
|
];
|
||||||
|
|
12
public/css/style.css
vendored
12
public/css/style.css
vendored
|
@ -126,7 +126,13 @@ section {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 80px 0;
|
padding: 80px 0;
|
||||||
}
|
}
|
||||||
|
section.normal {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-container {
|
||||||
|
margin-top: 25px;
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
|
|
||||||
Section with featured background image. Every section which will have this
|
Section with featured background image. Every section which will have this
|
||||||
|
@ -228,7 +234,6 @@ section {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
border-bottom: 1px solid #dcdcdc;
|
|
||||||
}
|
}
|
||||||
.header .menu {
|
.header .menu {
|
||||||
clear: both;
|
clear: both;
|
||||||
|
@ -261,6 +266,7 @@ section {
|
||||||
}
|
}
|
||||||
|
|
||||||
.navigation.active {
|
.navigation.active {
|
||||||
|
/* make visible visible */
|
||||||
-webkit-transform: translateX(0);
|
-webkit-transform: translateX(0);
|
||||||
-moz-transform: translateX(0);
|
-moz-transform: translateX(0);
|
||||||
-ms-transform: translateX(0);
|
-ms-transform: translateX(0);
|
||||||
|
@ -696,6 +702,8 @@ there.
|
||||||
-o-transform: translateX(0);
|
-o-transform: translateX(0);
|
||||||
transform: translateX(0);
|
transform: translateX(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -729,7 +737,7 @@ there.
|
||||||
}
|
}
|
||||||
.navigation ul li.right {
|
.navigation ul li.right {
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Larger than desktop */
|
/* Larger than desktop */
|
||||||
|
|
|
@ -268,17 +268,13 @@
|
||||||
<datestamp>
|
<datestamp>
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="ServerDateModified">
|
<xsl:when test="ServerDateModified">
|
||||||
<xsl:value-of select="ServerDateModified/@Year"/>
|
<xsl:value-of select="ServerDateModified/@Year"/>-
|
||||||
-
|
<xsl:value-of select="format-number(ServerDateModified/@Month,'00')"/>-
|
||||||
<xsl:value-of select="format-number(ServerDateModified/@Month,'00')"/>
|
|
||||||
-
|
|
||||||
<xsl:value-of select="format-number(ServerDateModified/@Day,'00')"/>
|
<xsl:value-of select="format-number(ServerDateModified/@Day,'00')"/>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<xsl:value-of select="ServerDatePublished/@Year"/>
|
<xsl:value-of select="ServerDatePublished/@Year"/>-
|
||||||
-
|
<xsl:value-of select="format-number(ServerDatePublished/@Month,'00')"/>-
|
||||||
<xsl:value-of select="format-number(ServerDatePublished/@Month,'00')"/>
|
|
||||||
-
|
|
||||||
<xsl:value-of select="format-number(ServerDatePublished/@Day,'00')"/>
|
<xsl:value-of select="format-number(ServerDatePublished/@Day,'00')"/>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
|
@ -290,9 +286,11 @@
|
||||||
<xsl:apply-templates select="SetSpec" />
|
<xsl:apply-templates select="SetSpec" />
|
||||||
</header>
|
</header>
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<!-- nicht bei ListIdentifiers-->
|
<!-- nicht bei ListIdentifiers und auch nicht bei gelöschten Datensätzen-->
|
||||||
<xsl:when test="$oai_verb!='ListIdentifiers' and @ServerState!='deleted'">
|
<xsl:when test="$oai_verb!='ListIdentifiers' and @ServerState!='deleted'">
|
||||||
<metadata>
|
|
||||||
|
<metadata>
|
||||||
|
<!-- <xsl:value-of select="$oai_metadataPrefix" /> -->
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="$oai_metadataPrefix='oai_dc'">
|
<xsl:when test="$oai_metadataPrefix='oai_dc'">
|
||||||
<xsl:apply-templates select="." mode="oai_dc" />
|
<xsl:apply-templates select="." mode="oai_dc" />
|
||||||
|
@ -302,6 +300,7 @@
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
@ -453,7 +452,7 @@
|
||||||
<dc:date>
|
<dc:date>
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="PublishedDate">
|
<xsl:when test="PublishedDate">
|
||||||
<xsl:value-of select="PublishedDate/@Year"/>
|
<xsl:value-of select="PublishedDate/@Year"/>
|
||||||
- <xsl:value-of select="format-number(PublishedDate/@Month,'00')"/>
|
- <xsl:value-of select="format-number(PublishedDate/@Month,'00')"/>
|
||||||
- <xsl:value-of select="format-number(PublishedDate/@Day,'00')"/>
|
- <xsl:value-of select="format-number(PublishedDate/@Day,'00')"/>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 3.0 MiB After Width: | Height: | Size: 686 KiB |
|
@ -19,7 +19,7 @@
|
||||||
<!-- FONT
|
<!-- FONT
|
||||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||||
<!-- <link href='http://fonts.googleapis.com/css?family=Raleway:400,300,600' rel='stylesheet' type='text/css'> -->
|
<!-- <link href='http://fonts.googleapis.com/css?family=Raleway:400,300,600' rel='stylesheet' type='text/css'> -->
|
||||||
<link href="http://fonts.googleapis.com/css?family=Roboto:400,500,700,900" rel="stylesheet" type='text/css'>
|
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700,900" rel="stylesheet" type='text/css'>
|
||||||
|
|
||||||
<!-- CSS
|
<!-- CSS
|
||||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||||
|
@ -50,7 +50,13 @@
|
||||||
<a href="#" class="menu-icon">
|
<a href="#" class="menu-icon">
|
||||||
<i class="fa fa-bars"></i>
|
<i class="fa fa-bars"></i>
|
||||||
</a>
|
</a>
|
||||||
|
<div class="container">
|
||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
|
<!-- <li>
|
||||||
|
<a href="#" class="menu-icon">
|
||||||
|
<i class="fa fa-bars"></i>
|
||||||
|
</a>
|
||||||
|
</li> -->
|
||||||
<li><a href="#hero">Home</a></li>
|
<li><a href="#hero">Home</a></li>
|
||||||
<li><a href="#introduction">Introduction</a></li>
|
<li><a href="#introduction">Introduction</a></li>
|
||||||
<li><a href="#work">Work</a></li>
|
<li><a href="#work">Work</a></li>
|
||||||
|
@ -61,6 +67,7 @@
|
||||||
<li><a href="#contact">Contact</a></li> -->
|
<li><a href="#contact">Contact</a></li> -->
|
||||||
<li class="right"><a href="#">Login</a></li>
|
<li class="right"><a href="#">Login</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
@ -185,8 +192,7 @@
|
||||||
<img src="images/clients/logo_zamg.png" alt="Zamg Client">
|
<img src="images/clients/logo_zamg.png" alt="Zamg Client">
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!-- About -->
|
<!-- About -->
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2,87 +2,85 @@ import './jquery-global.js';
|
||||||
import 'single-page-nav/jquery.singlePageNav.js';
|
import 'single-page-nav/jquery.singlePageNav.js';
|
||||||
//bind plugin definition to jQuery
|
//bind plugin definition to jQuery
|
||||||
|
|
||||||
$(document).ready(function(){
|
$(document).ready(function () {
|
||||||
|
|
||||||
// =Hero
|
// =Hero
|
||||||
// Alway make hero-container height equal to window height
|
// Alway make hero-container height equal to window height
|
||||||
|
|
||||||
var $heroContainer = $('.hero');
|
var $heroContainer = $('.hero');
|
||||||
|
|
||||||
|
$heroContainer.height(window.innerHeight);
|
||||||
|
|
||||||
|
// When user resize browser window, hero container needs to have the same
|
||||||
|
// height as browser window height.
|
||||||
|
$(window).resize(function () {
|
||||||
$heroContainer.height(window.innerHeight);
|
$heroContainer.height(window.innerHeight);
|
||||||
|
});
|
||||||
// When user resize browser window, hero container needs to have the same
|
|
||||||
// height as browser window height.
|
// =Work
|
||||||
$(window).resize(function() {
|
// Isotope filters
|
||||||
$heroContainer.height(window.innerHeight);
|
// var $workFilterLinks = $('.work-filters li');
|
||||||
});
|
// var $container = $('.work-items');
|
||||||
|
|
||||||
// =Work
|
// $workFilterLinks.find('a').click(function(){
|
||||||
// Isotope filters
|
// $workFilterLinks.removeClass('active');
|
||||||
// var $workFilterLinks = $('.work-filters li');
|
// $container.isotope({
|
||||||
// var $container = $('.work-items');
|
// // options
|
||||||
|
// filter: $(this).attr('data-filter'),
|
||||||
// $workFilterLinks.find('a').click(function(){
|
// itemSelector: '.isotope-item',
|
||||||
// $workFilterLinks.removeClass('active');
|
// animationEngine : "best-available",
|
||||||
// $container.isotope({
|
// masonry: {
|
||||||
// // options
|
// columnWidth: '.isotope-item'
|
||||||
// filter: $(this).attr('data-filter'),
|
// }
|
||||||
// itemSelector: '.isotope-item',
|
// });
|
||||||
// animationEngine : "best-available",
|
// $(this).parent().addClass('active');
|
||||||
// masonry: {
|
// return false;
|
||||||
// columnWidth: '.isotope-item'
|
// });
|
||||||
// }
|
|
||||||
// });
|
// Menu initialization
|
||||||
// $(this).parent().addClass('active');
|
|
||||||
// return false;
|
var $menuIcon = $('.menu-icon'),
|
||||||
// });
|
$navigation = $('.navigation'),
|
||||||
|
$menu = $('.menu'),
|
||||||
// Menu initialization
|
$navigationLink = $('.menu a');
|
||||||
|
|
||||||
var $menuIcon = $('.menu-icon'),
|
if (location.pathname == "/") {
|
||||||
$navigation = $('.navigation'),
|
$(window).scroll(function () {
|
||||||
$menu = $('.menu'),
|
if (window.scrollY > window.outerHeight) {
|
||||||
$navigationLink = $('.menu a');
|
|
||||||
|
|
||||||
$(window).scroll(function() {
|
|
||||||
if(window.scrollY > window.outerHeight) {
|
|
||||||
$menuIcon.addClass('active');
|
$menuIcon.addClass('active');
|
||||||
} else {
|
} else {
|
||||||
$menuIcon.removeClass('active');
|
$menuIcon.removeClass('active');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
$menuIcon.click(function(e) {
|
|
||||||
e.preventDefault();
|
$menuIcon.click(function (e) {
|
||||||
|
e.preventDefault();
|
||||||
$navigation.toggleClass('active');
|
$navigation.toggleClass('active');
|
||||||
});
|
|
||||||
|
|
||||||
$menu.singlePageNav({
|
|
||||||
filter: ':not(.external)',
|
|
||||||
speed: 1000,
|
|
||||||
currentClass: 'current',
|
|
||||||
easing: 'swing',
|
|
||||||
updateHash: false,
|
|
||||||
beforeStart: function() {
|
|
||||||
},
|
|
||||||
onComplete: function() {
|
|
||||||
$navigation.removeClass('active');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Scrollreveal initialize
|
|
||||||
|
|
||||||
// var config = {
|
|
||||||
// easing: 'hustle',
|
|
||||||
// reset: false,
|
|
||||||
// delay: 'onload',
|
|
||||||
// opacity: .2,
|
|
||||||
// vFactor: 0.2,
|
|
||||||
// mobile: false
|
|
||||||
// }
|
|
||||||
|
|
||||||
// window.sr = new scrollReveal( config );
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// $menu.singlePageNav({
|
||||||
|
// filter: ':not(.external)',
|
||||||
|
// speed: 1000,
|
||||||
|
// currentClass: 'current',
|
||||||
|
// easing: 'swing',
|
||||||
|
// updateHash: false,
|
||||||
|
// beforeStart: function() {
|
||||||
|
// },
|
||||||
|
// onComplete: function() {
|
||||||
|
// $navigation.removeClass('active');
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
|
||||||
|
//// Scrollreveal initialize
|
||||||
|
// var config = {
|
||||||
|
// easing: 'hustle',
|
||||||
|
// reset: false,
|
||||||
|
// delay: 'onload',
|
||||||
|
// opacity: .2,
|
||||||
|
// vFactor: 0.2,
|
||||||
|
// mobile: false
|
||||||
|
// }
|
||||||
|
// window.sr = new scrollReveal(config);
|
||||||
|
|
||||||
|
});
|
||||||
|
|
|
@ -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('title', Lang::get('resources.home_index_contact_pagetitle'))
|
||||||
|
|
||||||
@section('content')
|
@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="pure-u-1 pure-u-md-2-3">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<h1>Kontakt</h1>
|
<h1>Kontakt</h1>
|
||||||
|
@ -49,7 +43,74 @@
|
||||||
<div class="sidebar">
|
<div class="sidebar">
|
||||||
</div>
|
</div>
|
||||||
</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
|
@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')
|
@extends('layouts.app')
|
||||||
|
|
||||||
@section('hero')
|
@section('hero')
|
||||||
<div class="pure-g slider">
|
<!-- Hero -->
|
||||||
<div class="container">
|
<section id="hero" class="hero u-full-width">
|
||||||
<div class="pure-g">
|
<div class="hero-image"></div>
|
||||||
<div class="pure-u-1">
|
<div class="container centered">
|
||||||
<h2 class="brand-tagline">
|
<div class="twelve columns">
|
||||||
<strong>RDR is a data repository</strong> for the research community with secure preservation and data publication.
|
<h1 class="separator">Research Data Repository</h1>
|
||||||
</h2>
|
<h2>
|
||||||
</div>
|
A data repository for the research community with secure preservation and data publication.
|
||||||
|
</h2>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="pure-g">
|
<!-- Introduction -->
|
||||||
<div class="pure-u-1 lead">
|
<section data-sr id="introduction" class="introduction u-full-width">
|
||||||
<div class="content">
|
<div class="container">
|
||||||
<h1 class="title">DATA RESEARCH REPOSITORY</h1>
|
<div class="row">
|
||||||
</div>
|
<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>
|
||||||
</div>
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
<div class="pure-g content two-col">
|
<!-- Work -->
|
||||||
<div class="pure-u-1-2">
|
<section data-sr id="work" class="work u-full-width">
|
||||||
<div class="box box-l">
|
<div class="container">
|
||||||
<!--<h2>Title</h2>-->
|
<div class="row">
|
||||||
<p> @lang('resources.home_index_welcome')</p>
|
<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>
|
</div>
|
||||||
<div class="pure-u-1-2">
|
</section>
|
||||||
<div class="box box-r">
|
|
||||||
<p> @lang('resources.home_index_instructions')</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
@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')
|
@extends('layouts.app')
|
||||||
|
|
||||||
@section('title', Lang::get('resources.home_news_pagetitle'))
|
{{-- @section('title', Lang::get('resources.home_news_pagetitle')) --}}
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<div class="pure-g">
|
<section id="about" class="u-full-width">
|
||||||
|
<div class="container">
|
||||||
<div class="pure-u-1 pure-u-md-3-3">
|
<div class="row">
|
||||||
<div class="content">
|
<div class="twelve columns">
|
||||||
<!--<h1>
|
<h3 class="separator">
|
||||||
@lang('resources.home_news_title')
|
@lang('resources.home_news_pagetitle')
|
||||||
</h1>-->
|
</h3>
|
||||||
<h2>
|
<h4>Published: 27.07.2019</h4>
|
||||||
<strong>RDR included in re3data.org list of research data repositories </strong>
|
<p>
|
||||||
</h2>
|
re3data.org is a global registry of research data repositories. The registry covers research data
|
||||||
<h4>Published: 27.07.2019</h4>
|
repositories from
|
||||||
<p>
|
different academic disciplines. re3data.org presents repositories for the permanent storage and
|
||||||
re3data.org is a global registry of research data repositories. The registry covers research data repositories from
|
access to datasets
|
||||||
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
|
||||||
for researchers, funding bodies, publishers and academic institutions. re3data.org aims to promote a culture of
|
culture of
|
||||||
sharing and increased access to research data.
|
sharing and increased access to research data.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
re3data.org helps researchers to find appropriate repositories for the storage and access of research data.
|
re3data.org helps researchers to find appropriate repositories for the storage and access of
|
||||||
Further, it can be used by funding organisations to promote permanent access to research data from their research projects.
|
research data.
|
||||||
In addition re3data.org offers publishers and academic institutions a tool for the identification of research data repositories
|
Further, it can be used by funding organisations to promote permanent access to research data from
|
||||||
where scientists can deposit their data.
|
their research projects.
|
||||||
</p>
|
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>
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
@endsection
|
@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')
|
@extends('layouts.app')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="content">
|
<section id="sitelinks" class="normal u-full-width">
|
||||||
<h1>
|
<div class="container">
|
||||||
{!! $page->title !!}
|
<div class="row">
|
||||||
</h1>
|
<div class="twelve columns">
|
||||||
|
<h1>
|
||||||
|
{!! $page->title !!}
|
||||||
|
</h1>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<p>
|
<p>
|
||||||
{!! $page->description !!}
|
{!! $page->description !!}
|
||||||
</p>
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
|
|
||||||
@endsection
|
@endsection
|
|
@ -1,50 +1,57 @@
|
||||||
@extends('layouts.app')
|
@extends('layouts.app')
|
||||||
@section('content')
|
@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>
|
<section id="sitelinks" class="normal u-full-width">
|
||||||
<?php foreach ($years as $year) : ?>
|
<div class="container">
|
||||||
<a title="datasets published in year <?= $year ?>" href="{{ URL::route('frontend.sitelinks.list',['year' => $year]) }}"><?= $year ?>
|
<div class="row">
|
||||||
</a>
|
<div class="twelve columns">
|
||||||
<?php endforeach; ?>
|
<div class="content">
|
||||||
</span>
|
<h1 class="title">Sitelinks for Web Crawlers</h1>
|
||||||
|
|
||||||
<div class="posts">
|
<span>
|
||||||
<ol>
|
<?php foreach ($years as $year) : ?>
|
||||||
<?php foreach ($documents as $document) : ?>
|
<a title="datasets published in year <?= $year ?>"
|
||||||
<li>
|
href="{{ URL::route('frontend.sitelinks.list',['year' => $year]) }}"><?= $year ?>
|
||||||
<section class="post">
|
</a>
|
||||||
<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>
|
|
||||||
<?php endforeach; ?>
|
<?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>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
@endsection
|
@endsection
|
130
resources/views/layouts/app.blade.old.php
Normal file
130
resources/views/layouts/app.blade.old.php
Normal file
|
@ -0,0 +1,130 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{ app()->getLocale() }}">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="Content-Language" content="de">
|
||||||
|
|
||||||
|
<!--<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">-->
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>@yield('title') RDR</title>
|
||||||
|
<link rel="shortcut icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
|
||||||
|
{{-- <link rel="stylesheet" type="text/css" href="{{ asset('css/bootstrap.min.css') }}"> --}}
|
||||||
|
|
||||||
|
{{-- <link rel='stylesheet' href="{{ asset('css/pure-min.css') }}" /> --}}
|
||||||
|
{{-- <link rel='stylesheet' href="{{ asset('css/grids-responsive-min.css') }}" /> --}}
|
||||||
|
<link rel='stylesheet' href="{{ asset('css/app1.css') }}" />
|
||||||
|
<!--<link rel='stylesheet' href="{{ asset('css/page.css') }}" />-->
|
||||||
|
<link rel='stylesheet' href="{{ asset('css/styles.css') }}" />
|
||||||
|
<link rel='stylesheet' href="{{ asset('css/langswitch.css') }}" />
|
||||||
|
<!-- Fonts -->
|
||||||
|
{{-- <link rel='stylesheet' href="{{ asset('css/font-awesome.css') }}" /> --}}
|
||||||
|
{{-- <link href="https://fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C700italic%2C400%2C300%2C700%2C800&ver=3.8.1" type="text/css" rel="stylesheet"> --}}
|
||||||
|
|
||||||
|
@yield('head')
|
||||||
|
|
||||||
|
|
||||||
|
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
||||||
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||||
|
<!--[if lt IE 9]>
|
||||||
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
||||||
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||||||
|
<![endif]-->
|
||||||
|
</head>
|
||||||
|
<body class="layout-home-html">
|
||||||
|
|
||||||
|
@include('partials.nav')
|
||||||
|
<div id="mobile-menu" class="pure-hidden-phone pure-hidden-tablet pure-hidden-desktop">
|
||||||
|
<ul></ul>
|
||||||
|
</div>
|
||||||
|
@yield('hero')
|
||||||
|
|
||||||
|
<div class="content-container">
|
||||||
|
<div class="container">
|
||||||
|
@include('partials.flash')
|
||||||
|
@yield('content')
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!--@yield('footer')-->
|
||||||
|
<div class="footer">
|
||||||
|
<div class="container">
|
||||||
|
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-1 pure-u-md-1-4 footer-about">
|
||||||
|
<div class="block">
|
||||||
|
<h3 class="block-title">About RDR</h3>
|
||||||
|
<ul>
|
||||||
|
{{-- <li><a href="{{ URL::route('frontend.home.about') }}">About Us</a></li> --}}
|
||||||
|
<li class="last"><a href="{!! URL::route('frontend.pages.show', ['page_slug'=>'about']) !!}">About Us</a></li>
|
||||||
|
<li><a href="{{ URL::route('frontend.home.news') }}">News</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-1 pure-u-md-1-4">
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-1 pure-u-md-1-4 footer-links">
|
||||||
|
<div class="block">
|
||||||
|
<h3 class="block-title">TOOLS & SUPPORT</h3>
|
||||||
|
<ul id="secondary-nav" class="nav">
|
||||||
|
<li class="first"><a href="{{ URL::route('frontend.home.contact') }}">Contact</a></li>
|
||||||
|
{{-- <li><a href="{{ URL::route('frontend.home.imprint') }}">Impressum</a></li> --}}
|
||||||
|
<li class="last"><a href="{!! URL::route('frontend.pages.show', ['page_slug'=>'imprint']) !!}">Impressum</a></li>
|
||||||
|
<li class="last"><a href="{{ URL::route('frontend.sitelinks.index') }}">Sitelinks</a></li>
|
||||||
|
<li class="last"><a href="{!! URL::route('frontend.pages.show', ['page_slug'=>'terms-and-conditions']) !!}">Terms and Conditions</a></li>
|
||||||
|
|
||||||
|
<li><a target="_blank" href="https://github.com/geolba"><i class="fab fa-github"></i> rdr bei GitHub</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-1 pure-u-md-1-4 block">
|
||||||
|
<div class="block">
|
||||||
|
<h3 class="block-title">CONNECT WITH US</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a target="_blank" href="https://www.geologie.ac.at/"><i class="fas fa-home"></i> GBA</a></li>
|
||||||
|
<li><span><i class="fas fa-phone"></i> +43-1-7125674</span></li>
|
||||||
|
<li><a href="mailto:repository@geologie.ac.at?Subject= RDR &body=How can I help you?"><i class="far fa-envelope"></i> repository@geologie.ac.at</a> </li>
|
||||||
|
<li></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
<div class="pure-g">
|
||||||
|
<div class="pure-u-1 pure-u-md-1-4 footer-copyright">
|
||||||
|
Geologische Bundesanstalt © {{ date('Y') }}
|
||||||
|
<!--<p id="logo-wrapper">
|
||||||
|
<a href="http://www.kobv.de/opus4/" title="Opus4 Website">
|
||||||
|
</a>
|
||||||
|
</p>-->
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-1 pure-u-md-1-4 footer-funded">
|
||||||
|
{{-- @role('administrator')
|
||||||
|
I'm an administrator!
|
||||||
|
@else
|
||||||
|
I'm not an administrator...
|
||||||
|
@endrole --}}
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-1 pure-u-md-1-4 footer-funded">
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-1 pure-u-md-1-4 footer-funded">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Scripts -->
|
||||||
|
{{-- <script type="text/javascript" src="{{ asset('js/jquery-2.1.1.min.js') }}"></script> --}}
|
||||||
|
<script type="text/javascript" src="{{ asset('js/lib.js') }}"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(document).ready(function() {
|
||||||
|
$('div.alert').not('alert-important').delay(3000).slideUp(300);
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
@yield('scripts')
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,130 +1,161 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{ app()->getLocale() }}">
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{ app()->getLocale() }}">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="Content-Language" content="de">
|
|
||||||
|
|
||||||
<!--<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">-->
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="Content-Language" content="de">
|
||||||
|
|
||||||
|
<!-- Basic Page Needs
|
||||||
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>RDR - For Scientists</title>
|
||||||
|
<meta name="description" content="An awesome one page website">
|
||||||
|
<meta name="author" content="Arno Kaimbacher">
|
||||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<title>@yield('title') RDR</title>
|
|
||||||
<link rel="shortcut icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
|
|
||||||
{{-- <link rel="stylesheet" type="text/css" href="{{ asset('css/bootstrap.min.css') }}"> --}}
|
|
||||||
|
|
||||||
{{-- <link rel='stylesheet' href="{{ asset('css/pure-min.css') }}" /> --}}
|
<!-- Mobile Specific Metas
|
||||||
{{-- <link rel='stylesheet' href="{{ asset('css/grids-responsive-min.css') }}" /> --}}
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||||
<link rel='stylesheet' href="{{ asset('css/app1.css') }}" />
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||||
<!--<link rel='stylesheet' href="{{ asset('css/page.css') }}" />-->
|
|
||||||
<link rel='stylesheet' href="{{ asset('css/styles.css') }}" />
|
|
||||||
<link rel='stylesheet' href="{{ asset('css/langswitch.css') }}" />
|
|
||||||
<!-- Fonts -->
|
|
||||||
{{-- <link rel='stylesheet' href="{{ asset('css/font-awesome.css') }}" /> --}}
|
|
||||||
{{-- <link href="https://fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C700italic%2C400%2C300%2C700%2C800&ver=3.8.1" type="text/css" rel="stylesheet"> --}}
|
|
||||||
|
|
||||||
|
<!-- FONT
|
||||||
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||||
|
<!-- <link href='http://fonts.googleapis.com/css?family=Raleway:400,300,600' rel='stylesheet' type='text/css'> -->
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700,900" rel="stylesheet" type='text/css'>
|
||||||
|
|
||||||
|
<!-- CSS
|
||||||
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||||
|
<link rel="stylesheet" href="/css/normalize.css">
|
||||||
|
<link rel="stylesheet" href="/css/skeleton.css">
|
||||||
|
<link rel="stylesheet" href="/css/font-awesome.css">
|
||||||
|
<link rel="stylesheet" href="/css/style.css">
|
||||||
|
|
||||||
|
<!-- Favicon
|
||||||
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||||
|
<link rel="icon" type="image/png" href="/images/favicon/favicon.ico" />
|
||||||
|
<!-- <link rel="apple-touch-icon" sizes="180x180" href="images/favicon/apple-touch-icon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon/favicon-16x16.png">
|
||||||
|
<link rel="manifest" href="images/favicon/site.webmanifest"> -->
|
||||||
|
|
||||||
|
<!-- Javascript
|
||||||
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||||
|
<script type="text/javascript" src="/js/scripts.js"></script>
|
||||||
@yield('head')
|
@yield('head')
|
||||||
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="layout-home-html">
|
<body class="layout-home-html">
|
||||||
|
|
||||||
@include('partials.nav')
|
<!-- Menu -->
|
||||||
<div id="mobile-menu" class="pure-hidden-phone pure-hidden-tablet pure-hidden-desktop">
|
<header class="header">
|
||||||
<ul></ul>
|
<nav class="navigation">
|
||||||
</div>
|
<a href="#" class="menu-icon {{ Route::currentRouteName() != 'frontend.home.index' ? 'active' : '' }}"">
|
||||||
|
<i class="fa fa-bars"></i>
|
||||||
|
</a>
|
||||||
|
<div class="container">
|
||||||
|
<ul class="menu">
|
||||||
|
<!-- <li><a href="#hero">Home</a></li> -->
|
||||||
|
<li>
|
||||||
|
<a class="{{ Route::currentRouteName() == 'frontend.home.index' ? 'current' : '' }}"
|
||||||
|
href="{{ url('/') }}">Home</a>
|
||||||
|
</li>
|
||||||
|
<!-- <li><a href="#introduction">Introduction</a></li> -->
|
||||||
|
<li>
|
||||||
|
<a class="{{ Route::currentRouteName() == 'frontend.home.intro' ? 'current' : '' }}"
|
||||||
|
href="{{ route('frontend.home.intro') }}">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<!-- <li><a href="#work">Work</a></li> -->
|
||||||
|
<li>
|
||||||
|
<a class="{{ Route::currentRouteName() == 'frontend.home.services' ? 'current' : '' }}"
|
||||||
|
href="{{ route('frontend.home.services') }}">Services</a>
|
||||||
|
</li>
|
||||||
|
<!-- <li><a href="#help">Help</a></li> -->
|
||||||
|
<li>
|
||||||
|
<a class="{{ Route::currentRouteName() == 'frontend.home.help' ? 'current' : '' }}"
|
||||||
|
href="{{ route('frontend.home.help') }}">Help</a>
|
||||||
|
</li>
|
||||||
|
<!-- <li><a href="#clients">Clients</a></li> -->
|
||||||
|
<!-- <li><a href="#about">About</a></li> -->
|
||||||
|
<li><a class="{{ Route::currentRouteName() == 'frontend.pages.show' ? 'current' : '' }}"
|
||||||
|
href="{!! url('/pages/about') !!}">About</a></li>
|
||||||
|
|
||||||
|
<!-- <li><a href="#why-us">Why us?</a></li>
|
||||||
|
<li><a href="#contact">Contact</a></li> -->
|
||||||
|
<!-- <li class="right"><a href="#">Login</a></li> -->
|
||||||
|
@if (Auth::guest())
|
||||||
|
<li class="right">
|
||||||
|
<a class="{{ Route::currentRouteName() == 'login' ? 'current' : '' }}"
|
||||||
|
href="{{ route('login') }}">
|
||||||
|
<i class="fas fa-sign-in-alt"></i> Login
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
@endif
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
@yield('hero')
|
@yield('hero')
|
||||||
|
|
||||||
<div class="content-container">
|
<div class="content-container">
|
||||||
<div class="container">
|
@yield('content')
|
||||||
@include('partials.flash')
|
|
||||||
@yield('content')
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!--@yield('footer')-->
|
|
||||||
<div class="footer">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
<div class="pure-g">
|
<!-- Footer -->
|
||||||
<div class="pure-u-1 pure-u-md-1-4 footer-about">
|
<section data-sr class="footer u-full-width u-max-full-width">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="four columns footer-about">
|
||||||
|
<!-- <h5>© 2015 Tuts+ Web Design.</h5> -->
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<h3 class="block-title">About RDR</h3>
|
<h3 class="block-title">About RDR</h3>
|
||||||
<ul>
|
<ul>
|
||||||
{{-- <li><a href="{{ URL::route('frontend.home.about') }}">About Us</a></li> --}}
|
<li class="last"><a
|
||||||
<li class="last"><a href="{!! URL::route('frontend.pages.show', ['page_slug'=>'about']) !!}">About Us</a></li>
|
href="{!! URL::route('frontend.pages.show', ['page_slug'=>'about']) !!}">About
|
||||||
|
Us</a></li>
|
||||||
<li><a href="{{ URL::route('frontend.home.news') }}">News</a></li>
|
<li><a href="{{ URL::route('frontend.home.news') }}">News</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="pure-u-1 pure-u-md-1-4">
|
<div class="four columns footer-links">
|
||||||
</div>
|
|
||||||
<div class="pure-u-1 pure-u-md-1-4 footer-links">
|
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<h3 class="block-title">TOOLS & SUPPORT</h3>
|
<h3 class="block-title">TOOLS & SUPPORT</h3>
|
||||||
<ul id="secondary-nav" class="nav">
|
<ul id="secondary-nav" class="nav">
|
||||||
<li class="first"><a href="{{ URL::route('frontend.home.contact') }}">Contact</a></li>
|
<li class="first"><a href="{{ URL::route('frontend.home.contact') }}">Contact</a></li>
|
||||||
{{-- <li><a href="{{ URL::route('frontend.home.imprint') }}">Impressum</a></li> --}}
|
<li class="last"><a
|
||||||
<li class="last"><a href="{!! URL::route('frontend.pages.show', ['page_slug'=>'imprint']) !!}">Impressum</a></li>
|
href="{!! URL::route('frontend.pages.show', ['page_slug'=>'imprint']) !!}">Impressum</a>
|
||||||
|
</li>
|
||||||
<li class="last"><a href="{{ URL::route('frontend.sitelinks.index') }}">Sitelinks</a></li>
|
<li class="last"><a href="{{ URL::route('frontend.sitelinks.index') }}">Sitelinks</a></li>
|
||||||
<li class="last"><a href="{!! URL::route('frontend.pages.show', ['page_slug'=>'terms-and-conditions']) !!}">Terms and Conditions</a></li>
|
<li class="last"><a
|
||||||
|
href="{!! URL::route('frontend.pages.show', ['page_slug'=>'terms-and-conditions']) !!}">Terms
|
||||||
|
and Conditions</a></li>
|
||||||
|
|
||||||
<li><a target="_blank" href="https://github.com/geolba"><i class="fab fa-github"></i> rdr bei GitHub</a></li>
|
<li><a target="_blank" href="https://github.com/geolba"><i class="fab fa-github"></i> rdr
|
||||||
|
bei GitHub</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="pure-u-1 pure-u-md-1-4 block">
|
<div class="four columns block">
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<h3 class="block-title">CONNECT WITH US</h3>
|
<h3 class="block-title">CONNECT WITH US</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a target="_blank" href="https://www.geologie.ac.at/"><i class="fas fa-home"></i> GBA</a></li>
|
<li><a target="_blank" href="https://www.geologie.ac.at/"><i class="fas fa-home"></i>
|
||||||
|
GBA</a></li>
|
||||||
<li><span><i class="fas fa-phone"></i> +43-1-7125674</span></li>
|
<li><span><i class="fas fa-phone"></i> +43-1-7125674</span></li>
|
||||||
<li><a href="mailto:repository@geologie.ac.at?Subject= RDR &body=How can I help you?"><i class="far fa-envelope"></i> repository@geologie.ac.at</a> </li>
|
<li><a href="mailto:repository@geologie.ac.at?Subject= RDR &body=How can I help you?"><i
|
||||||
|
class="far fa-envelope"></i> repository@geologie.ac.at</a> </li>
|
||||||
<li></li>
|
<li></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<hr>
|
|
||||||
<div class="pure-g">
|
|
||||||
<div class="pure-u-1 pure-u-md-1-4 footer-copyright">
|
|
||||||
Geologische Bundesanstalt © {{ date('Y') }}
|
|
||||||
<!--<p id="logo-wrapper">
|
|
||||||
<a href="http://www.kobv.de/opus4/" title="Opus4 Website">
|
|
||||||
</a>
|
|
||||||
</p>-->
|
|
||||||
</div>
|
|
||||||
<div class="pure-u-1 pure-u-md-1-4 footer-funded">
|
|
||||||
{{-- @role('administrator')
|
|
||||||
I'm an administrator!
|
|
||||||
@else
|
|
||||||
I'm not an administrator...
|
|
||||||
@endrole --}}
|
|
||||||
</div>
|
|
||||||
<div class="pure-u-1 pure-u-md-1-4 footer-funded">
|
|
||||||
</div>
|
|
||||||
<div class="pure-u-1 pure-u-md-1-4 footer-funded">
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
|
|
||||||
<!-- Scripts -->
|
|
||||||
{{-- <script type="text/javascript" src="{{ asset('js/jquery-2.1.1.min.js') }}"></script> --}}
|
|
||||||
<script type="text/javascript" src="{{ asset('js/lib.js') }}"></script>
|
|
||||||
<script type="text/javascript">
|
|
||||||
$(document).ready(function() {
|
|
||||||
$('div.alert').not('alert-important').delay(3000).slideUp(300);
|
|
||||||
});
|
|
||||||
|
|
||||||
</script>
|
|
||||||
@yield('scripts')
|
|
||||||
|
|
||||||
|
<!-- End Document
|
||||||
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
|
@ -429,12 +429,18 @@ Route::group(['namespace' => 'Frontend', 'as' => 'frontend.'], function () {
|
||||||
Route::get('/imprint', [
|
Route::get('/imprint', [
|
||||||
'as' => 'home.imprint', 'uses' => 'HomeController@imprint',
|
'as' => 'home.imprint', 'uses' => 'HomeController@imprint',
|
||||||
]);
|
]);
|
||||||
Route::get('/about', [
|
Route::get('/intro', [
|
||||||
'as' => 'home.about', 'uses' => 'HomeController@about',
|
'as' => 'home.intro', 'uses' => 'HomeController@intro',
|
||||||
]);
|
]);
|
||||||
Route::get('/news', [
|
Route::get('/news', [
|
||||||
'as' => 'home.news', 'uses' => 'HomeController@news',
|
'as' => 'home.news', 'uses' => 'HomeController@news',
|
||||||
]);
|
]);
|
||||||
|
Route::get('/services', [
|
||||||
|
'as' => 'home.services', 'uses' => 'HomeController@services',
|
||||||
|
]);
|
||||||
|
Route::get('/help', [
|
||||||
|
'as' => 'home.help', 'uses' => 'HomeController@help',
|
||||||
|
]);
|
||||||
|
|
||||||
//=================================================Crawlers====================================================
|
//=================================================Crawlers====================================================
|
||||||
Route::get('sitelinks', [
|
Route::get('sitelinks', [
|
||||||
|
|
1
storage/app/.gitignore
vendored
1
storage/app/.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
*
|
*
|
||||||
|
!public/
|
||||||
!.gitignore
|
!.gitignore
|
2
storage/app/public/.gitignore
vendored
Normal file
2
storage/app/public/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
Loading…
Reference in New Issue
Block a user