After Width: | Height: | Size: 4.1 MiB |
After Width: | Height: | Size: 4.1 MiB |
After Width: | Height: | Size: 4.1 MiB |
After Width: | Height: | Size: 3.1 MiB |
After Width: | Height: | Size: 4.7 MiB |
After Width: | Height: | Size: 188 KiB |
After Width: | Height: | Size: 109 KiB |
After Width: | Height: | Size: 253 KiB |
After Width: | Height: | Size: 142 KiB |
After Width: | Height: | Size: 241 KiB |
After Width: | Height: | Size: 383 KiB |
After Width: | Height: | Size: 25 KiB |
|
@ -0,0 +1,133 @@
|
|||
/*
|
||||
* jQuery The Final Countdown plugin v1.0.0 beta
|
||||
* http://github.com/hilios/jquery.countdown
|
||||
*
|
||||
* Copyright (c) 2011 Edson Hilios
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining
|
||||
* a copy of this software and associated documentation files (the
|
||||
* "Software"), to deal in the Software without restriction, including
|
||||
* without limitation the rights to use, copy, modify, merge, publish,
|
||||
* distribute, sublicense, and/or sell copies of the Software, and to
|
||||
* permit persons to whom the Software is furnished to do so, subject to
|
||||
* the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be
|
||||
* included in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
(function($) {
|
||||
|
||||
$.fn.countdown = function(toDate, callback) {
|
||||
var handlers = ['seconds', 'minutes', 'hours', 'days', 'weeks', 'daysLeft'];
|
||||
|
||||
function delegate(scope, method) {
|
||||
return function() { return method.call(scope) }
|
||||
}
|
||||
|
||||
return this.each(function() {
|
||||
// Convert
|
||||
if(!(toDate instanceof Date)) {
|
||||
if(String(toDate).match(/^[0-9]*$/)) {
|
||||
toDate = new Date(toDate);
|
||||
} else if( toDate.match(/([0-9]{1,2})\/([0-9]{1,2})\/([0-9]{2,4})\s([0-9]{1,2})\:([0-9]{2})\:([0-9]{2})/) ||
|
||||
toDate.match(/([0-9]{2,4})\/([0-9]{1,2})\/([0-9]{1,2})\s([0-9]{1,2})\:([0-9]{2})\:([0-9]{2})/)
|
||||
) {
|
||||
toDate = new Date(toDate);
|
||||
} else if(toDate.match(/([0-9]{1,2})\/([0-9]{1,2})\/([0-9]{2,4})/) ||
|
||||
toDate.match(/([0-9]{2,4})\/([0-9]{1,2})\/([0-9]{1,2})/)
|
||||
) {
|
||||
toDate = new Date(toDate)
|
||||
} else {
|
||||
throw new Error("Doesn't seen to be a valid date object or string")
|
||||
}
|
||||
}
|
||||
|
||||
var $this = $(this),
|
||||
values = {},
|
||||
lasting = {},
|
||||
interval = $this.data('countdownInterval'),
|
||||
currentDate = new Date(),
|
||||
secondsLeft = Math.floor((toDate.valueOf() - currentDate.valueOf()) / 1000);
|
||||
|
||||
function triggerEvents() {
|
||||
secondsLeft--;
|
||||
if(secondsLeft < 0) {
|
||||
secondsLeft = 0;
|
||||
}
|
||||
lasting = {
|
||||
seconds : secondsLeft % 60,
|
||||
minutes : Math.floor(secondsLeft / 60) % 60,
|
||||
hours : Math.floor(secondsLeft / 60 / 60) % 24,
|
||||
days : Math.floor(secondsLeft / 60 / 60 / 24),
|
||||
weeks : Math.floor(secondsLeft / 60 / 60 / 24 / 7),
|
||||
daysLeft: Math.floor(secondsLeft / 60 / 60 / 24) % 7
|
||||
}
|
||||
for(var i=0; i<handlers.length; i++) {
|
||||
var eventName = handlers[i];
|
||||
if(values[eventName] != lasting[eventName]) {
|
||||
values[eventName] = lasting[eventName];
|
||||
dispatchEvent(eventName);
|
||||
}
|
||||
}
|
||||
if(secondsLeft == 0) {
|
||||
stop();
|
||||
dispatchEvent('finished');
|
||||
}
|
||||
}
|
||||
triggerEvents();
|
||||
|
||||
function dispatchEvent(eventName) {
|
||||
var event = $.Event(eventName);
|
||||
event.date = new Date(new Date().valueOf() + secondsLeft);
|
||||
event.value = values[eventName] || "0";
|
||||
event.toDate = toDate;
|
||||
event.lasting = lasting;
|
||||
switch(eventName) {
|
||||
case "seconds":
|
||||
case "minutes":
|
||||
case "hours":
|
||||
event.value = event.value < 10 ? '0'+event.value.toString() : event.value.toString();
|
||||
break;
|
||||
default:
|
||||
if(event.value) {
|
||||
event.value = event.value.toString();
|
||||
}
|
||||
break;
|
||||
}
|
||||
callback.call($this, event);
|
||||
}
|
||||
|
||||
$this.bind('remove', function() {
|
||||
stop(); // If the selector is removed clear the interval for memory sake!
|
||||
dispatchEvent('removed');
|
||||
});
|
||||
|
||||
function stop() {
|
||||
clearInterval(interval);
|
||||
}
|
||||
|
||||
function start() {
|
||||
$this.data('countdownInterval', setInterval(delegate($this, triggerEvents), 1000));
|
||||
interval = $this.data('countdownInterval');
|
||||
}
|
||||
|
||||
if(interval) stop();
|
||||
start();
|
||||
});
|
||||
}
|
||||
// Wrap the remove method to trigger an event when called
|
||||
var removeEvent = new $.Event('remove'),
|
||||
removeFunction = $.fn.remove;
|
||||
$.fn.remove = function() {
|
||||
$(this).trigger(removeEvent);
|
||||
return removeFunction.apply(this, arguments);
|
||||
}
|
||||
})(jQuery);
|
|
@ -0,0 +1,32 @@
|
|||
@layout('content.master')
|
||||
@section('head')
|
||||
<title>{{$content->title}}</title>
|
||||
@stop
|
||||
@section('content')
|
||||
|
||||
<div class="nav-backed-header parallax">
|
||||
<div class="container" style="height: 55px;">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="main" role="main">
|
||||
<div id="content" class="content full">
|
||||
<div class="container">
|
||||
|
||||
<h1>{{$content->title}}</h1>
|
||||
|
||||
|
||||
<p class="mt-3 mb-4">
|
||||
{!!$content->nachricht!!}
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@stop
|
|
@ -0,0 +1,34 @@
|
|||
@layout('content.master')
|
||||
@section('head')
|
||||
<title>{{$content->title}}</title>
|
||||
@stop
|
||||
@section('content')
|
||||
|
||||
<div class="nav-backed-header parallax">
|
||||
<div class="container" style="height: 55px;">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="main" role="main">
|
||||
<div id="content" class="content full">
|
||||
<div class="container">
|
||||
|
||||
<h1>{{$content->title}}</h1>
|
||||
|
||||
<img src="{{$content->image}}" width="100" class="img-fluid rounded border">
|
||||
|
||||
<p class="mt-3 mb-4">
|
||||
{!!$content->beschreibung!!}
|
||||
</p>
|
||||
|
||||
|
||||
<a target="_blank" href="{{$content->homepage}}">{{$content->title}}</a>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@stop
|
|
@ -0,0 +1,32 @@
|
|||
@layout('content.master')
|
||||
@section('head')
|
||||
<title>{{$content->title}}</title>
|
||||
@stop
|
||||
@section('content')
|
||||
|
||||
<div class="nav-backed-header parallax">
|
||||
<div class="container" style="height: 55px;">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="main" role="main">
|
||||
<div id="content" class="content full">
|
||||
<div class="container">
|
||||
|
||||
<h1>{{$content->title}}</h1>
|
||||
|
||||
|
||||
<p class="mt-3 mb-4">
|
||||
{!!$content->beschreibung!!}
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@stop
|
|
@ -1,6 +1,6 @@
|
|||
@layout('content.master')
|
||||
@section('head')
|
||||
<title>Home Page</title>
|
||||
<title>Läufermeeting Neustadt 2023</title>
|
||||
@stop
|
||||
@section('content')
|
||||
|
||||
|
@ -8,32 +8,35 @@
|
|||
|
||||
<div class="hero-slider flexslider clearfix" data-autoplay="yes" data-pagination="yes" data-arrows="yes" data-style="fade" data-pause="yes">
|
||||
<ul class="slides">
|
||||
<li class=" parallax" style="background-image:url(https://www.laeufermeeting-neustadt.de/images/start2.jpg);"></li>
|
||||
<li class="parallax" style="background-image:url(https://www.laeufermeeting-neustadt.de/images/header1.jpg);"></li>
|
||||
<li class=" parallax" style="background-image:url({{storage('assets/images/start2.jpg')}});"></li>
|
||||
<li class="parallax" style="background-image:url({{storage('assets/images/header1.jpg')}});"></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="notice-bar">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-3 col-md-6 col-6 notice-bar-title">
|
||||
<div class="col-lg-4 col-md-6 col-6 notice-bar-title">
|
||||
<div class="display-flex">
|
||||
<span class="notice-bar-title-icon d-none d-xl-block d-none d-lg-block"><i class="far fa-calendar-alt fa-3x"></i></span>
|
||||
|
||||
<span class="notice-in">
|
||||
<span class="title-note">2023</span> <strong>Upcoming Event</strong>
|
||||
<span class="title-note">2023</span> <strong>Läufermeeting Neustadt</strong>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-6 col-6 notice-bar-event-title">
|
||||
<h5><a href="{{url('/ausschreibung')}}">Läufermeeting Neustadt 2023</a></h5>
|
||||
<span class="meta-data">13th July, 2023</span>
|
||||
<div class="col-lg-2 col-md-6 col-6 notice-bar-event-title">
|
||||
<span class="notice-bar-title-icon d-none d-xl-block d-none d-lg-block">
|
||||
<svg style="fill: currentColor; width: 30px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M400 64h-48V8c0-4.4-3.6-8-8-8h-16c-4.4 0-8 3.6-8 8v56H128V8c0-4.4-3.6-8-8-8h-16c-4.4 0-8 3.6-8 8v56H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm16 400c0 8.8-7.2 16-16 16H48c-8.8 0-16-7.2-16-16V192h384v272zm0-304H32v-48c0-8.8 7.2-16 16-16h352c8.8 0 16 7.2 16 16v48zM112 384h96c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm16-96h64v64h-64v-64z"/></svg>
|
||||
</span>
|
||||
<h5><a href="{{url('/ausschreibung')}}">4. & 6. August, 2023</a></h5>
|
||||
<span class="meta-data">Neustadt a. d. Waldnaab</span>
|
||||
</div>
|
||||
<div id="counter" class="col-lg-4 col-md-6 col-sm-12 counter" data-date="November 13, 2023" style="opacity: 0.5;">
|
||||
<div class="timer-col"> <span id="days">0</span> <span class="timer-type">days</span> </div>
|
||||
<div class="timer-col"> <span id="hours">00</span> <span class="timer-type">hrs</span> </div>
|
||||
<div class="timer-col"> <span id="minutes">00</span> <span class="timer-type">mins</span> </div>
|
||||
<div class="timer-col"> <span id="seconds">00</span> <span class="timer-type">secs</span> </div>
|
||||
<div id="counter" class="col-lg-4 col-md-6 col-sm-12 counter" data-date="August 04, 2023" style="opacity: 0.5;">
|
||||
<div class="timer-col"> <span id="days">0</span> <span class="timer-type">Tage</span> </div>
|
||||
<div class="timer-col"> <span id="hours">00</span> <span class="timer-type">Stunden</span> </div>
|
||||
<div class="timer-col"> <span id="minutes">00</span> <span class="timer-type">Minuten</span> </div>
|
||||
<div class="timer-col"> <span id="seconds">00</span> <span class="timer-type">Sekunden</span> </div>
|
||||
</div>
|
||||
<div class="col-lg-2 col-md-6 col-sm-12 d-sm-none d-md-block"> <a target="_blank" href="https://ladv.de/ausschreibung/detail/33930/35.-Neust%C3%A4dter-L%C3%A4ufermeeting-Neustadt-an-der-Waldnaab.htm" class="btn btn-primary btn-lg btn-block">Jetzt anmelden</a> </div>
|
||||
</div>
|
||||
|
@ -45,23 +48,15 @@
|
|||
<div id="content" class="content full">
|
||||
<div class="container">
|
||||
<!-- Start Featured Blocks -->
|
||||
<div class="featured-blocks clearfix">
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 featured-block"> <a href="our-staff.html" class="img-thumbnail"> <img src="http://placehold.it/600x400&text=IMAGE+PLACEHOLDER" alt="staff"> <strong>Our Pastors</strong> <span class="more">read more</span> </a> </div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 featured-block"> <a href="about.html" class="img-thumbnail"> <img src="http://placehold.it/600x400&text=IMAGE+PLACEHOLDER" alt="staff"> <strong>New Here</strong> <span class="more">read more</span> </a> </div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 featured-block"> <a href="sermons.html" class="img-thumbnail"> <img src="http://placehold.it/600x400&text=IMAGE+PLACEHOLDER" alt="staff"> <strong>Sermons Archive</strong> <span class="more">read more</span> </a> </div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- End Featured Blocks -->
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-md-6 col-sm-12">
|
||||
<!-- Events Listing -->
|
||||
|
||||
<div class="spacer-30"></div>
|
||||
<!-- Latest News -->
|
||||
<div class="listing post-listing">
|
||||
<header class="listing-header">
|
||||
<h3>Neuigkeiten</h3>
|
||||
<h2 class="h3" style="color: #C71B1B">Neuigkeiten</h2>
|
||||
</header>
|
||||
<section class="listing-cont">
|
||||
<ul>
|
||||
|
@ -79,7 +74,10 @@
|
|||
<div class="col-md-8">
|
||||
<div class="post-title">
|
||||
<h2><a href="{{$content->path}}">{{$content->title}}</a></h2>
|
||||
<span class="meta-data"><i class="far fa-calendar-alt"></i> on 17th Dec, 2013</span></div>
|
||||
<span class="meta-data"><svg style="fill: currentColor; width: 13px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M400 64h-48V8c0-4.4-3.6-8-8-8h-16c-4.4 0-8 3.6-8 8v56H128V8c0-4.4-3.6-8-8-8h-16c-4.4 0-8 3.6-8 8v56H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm16 400c0 8.8-7.2 16-16 16H48c-8.8 0-16-7.2-16-16V192h384v272zm0-304H32v-48c0-8.8 7.2-16 16-16h352c8.8 0 16 7.2 16 16v48zM112 384h96c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16zm16-96h64v64h-64v-64z"/></svg>
|
||||
{{$content->created_at}}
|
||||
</span>
|
||||
</div>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla convallis egestas rhoncus. Donec facilisis fermentum sem, ac viverra ante luctus vel. Donec vel mauris quam. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla convallis egestas rhoncus.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -94,7 +92,7 @@
|
|||
|
||||
<div class="listing events-listing">
|
||||
<header class="listing-header">
|
||||
<h3>Wettbewerbe</h3>
|
||||
<h2 class="h3" style="color: #C71B1B">Wettbewerbe</h2>
|
||||
</header>
|
||||
<section class="listing-cont">
|
||||
<ul>
|
||||
|
@ -108,7 +106,7 @@
|
|||
<div class="event-date"> <span class="date">06</span> <span class="month">Aug</span> </div>
|
||||
<div class="event-detail">
|
||||
<h4><a href="{{$content->path}}">{{$content->title}}</a></h4>
|
||||
<span class="event-dayntime meta-data">{{$content->created_at}}</span> </div>
|
||||
</div>
|
||||
<div class="to-event-url" style="height: 54px;">
|
||||
<a href="{{$content->path}}" class="btn btn-default btn-sm">Ansehen</a>
|
||||
</div>
|
||||
|
@ -125,17 +123,29 @@
|
|||
<div class="col-lg-4 col-md-6 col-sm-12">
|
||||
<!-- Latest Sermons -->
|
||||
<div class="listing sermons-listing">
|
||||
<header class="listing-header">
|
||||
<h3>Recent Sermons</h3>
|
||||
</header>
|
||||
<section class="listing-cont">
|
||||
|
||||
<section>
|
||||
|
||||
<h2 class="h3" ><a class="text-decoration-none " style="color: #C71B1B" href="{{url('/grusswort')}}">Grußwort des Veranstalters</a></h2>
|
||||
|
||||
<ul>
|
||||
<li class="item sermon featured-sermon">
|
||||
<h4><a href="single-sermon.html">Grußwort des Veranstalters</a></h4>
|
||||
<div class="featured-sermon-video">
|
||||
<div class="fluid-width-video-wrapper" style="padding-top: 75%;"><iframe src="http://player.vimeo.com/video/19564018?title=0&byline=0&color=007F7B" id="fitvid444616" frameborder="0"></iframe></div>
|
||||
<img src="{{storage('assets/images/veranstalter.JPG')}}" class="img-fluid mb-4">
|
||||
<p>
|
||||
Liebe Läufer/innen, liebe Trainerkollegen,
|
||||
<br>
|
||||
<br>
|
||||
|
||||
|
||||
auf der idyllischen Schulsportanlage des Gymnasiums in Neustadt an der Waldnaab, im Nordosten Bayerns, geht seit 1988 die Post ab. Ohne taktisches Geplänkel wird in allen Rennen versucht neue Bestzeiten zu erzielen. Viele Athleten/innen haben dies auf der windgeschützten, mitten im Wald, gelegenen pfeilschnellen Bahn erreicht. Tolle Stadionrekorde wurden in den letzten Jahrzehnten erzielt.
|
||||
|
||||
|
||||
</p>
|
||||
|
||||
<div class="text end">
|
||||
<a class="btn btn-sm btn-primary" href="{{url('/grusswort')}}">Weiter lesen</a>
|
||||
|
||||
</div>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla convallis egestas rhoncus. Donec facilisis consectetur adipiscing elit. Nulla convallis egestas rhoncus</p>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
@ -143,6 +153,39 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="featured-blocks clearfix">
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 featured-block"> <a href="{{url('/anfahrt')}}" class="img-thumbnail"> <img src="{{storage('assets/images/anfahrt.png')}}" alt="Anfahrt"> <strong>Anreise</strong> <span class="more">Mehr Info</span> </a> </div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 featured-block"> <a href="{{url('/bestzeiten')}}" class="img-thumbnail"> <img src="{{storage('assets/images/bestzeiten.jpg')}}" alt="Bestzeiten"> <strong>Bestzeiten</strong> <span class="more">Mehr Info</span> </a> </div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 featured-block"> <a href="{{url('/geschichte')}}" class="img-thumbnail"> <img src="{{storage('assets/images/geschichte.jpg')}}" alt="Geschuchte"> <strong>Archiv</strong> <span class="more">Mehr Info</span> </a> </div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="featured-gallery">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-3 col-sm-3">
|
||||
<h4></h4>
|
||||
<a href="{{url('/sponsoren')}}" class="btn btn-default btn-lg">Unsere Sponsoren</a> </div>
|
||||
|
||||
|
||||
@foreach(filterByContentType("Sponsor")->take(3) as $content)
|
||||
|
||||
|
||||
<div class="col-md-3 col-sm-3 post format-image"> <a target="_blank" href="{{$content->path}}" > <img src="{{$content->image}}" alt="{{$content->title}}"> <span class="zoom" style="width: 230px; height: 153px; line-height: 153px;"><i class="fa fa-search"></i></span></a> </div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -0,0 +1,38 @@
|
|||
@layout('content.master')
|
||||
@section('head')
|
||||
<title>{{$list->name}}</title>
|
||||
@stop
|
||||
@section('content')
|
||||
<div class="section">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<h1>Neuigkeiten</h1>
|
||||
<p class="fs-5 mb-5">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolor fuga itaque libero pariatur quibusdam? Aperiam, dolor doloremque eligendi eos esse fuga impedit incidunt magnam nisi repellendus saepe sapiente? Eveniet, qui?</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mb-5">
|
||||
@foreach($contents as $content)
|
||||
|
||||
<div class="col-12 col-md-4">
|
||||
<div class="card shadow-md mb-4 rounded-top" >
|
||||
<img src="https://picsum.photos/300/150" class="card-img-top">
|
||||
<div class="card-body">
|
||||
<h2 class="h3">{{$content->title}}</h2>
|
||||
<span class="text-muted mb-3">{{$content->created_at}}</span>
|
||||
<p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus architecto autem beatae, delectus dignissimos dolore dolorum, eius explicabo illo illum ipsam laborum libero mollitia neque quis repellendus, suscipit veritatis voluptatem!</p>
|
||||
<div class="text-end">
|
||||
<a href="{{$content->path}}" class="btn btn-primary">Mehr lesen</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@stop
|
|
@ -0,0 +1,38 @@
|
|||
@layout('content.master')
|
||||
@section('head')
|
||||
<title>{{$list->name}}</title>
|
||||
@stop
|
||||
@section('content')
|
||||
<div class="section">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<h1>Wettbewerbe</h1>
|
||||
<p class="fs-5 mb-5">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolor fuga itaque libero pariatur quibusdam? Aperiam, dolor doloremque eligendi eos esse fuga impedit incidunt magnam nisi repellendus saepe sapiente? Eveniet, qui?</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mb-5">
|
||||
@foreach($contents as $content)
|
||||
|
||||
<div class="col-12 col-md-4">
|
||||
<div class="card shadow-md mb-4 rounded-top" >
|
||||
<img src="https://picsum.photos/300/150" class="card-img-top">
|
||||
<div class="card-body">
|
||||
<h2 class="h3">{{$content->title}}</h2>
|
||||
<span class="text-muted mb-3">{{$content->created_at}}</span>
|
||||
<p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus architecto autem beatae, delectus dignissimos dolore dolorum, eius explicabo illo illum ipsam laborum libero mollitia neque quis repellendus, suscipit veritatis voluptatem!</p>
|
||||
<div class="text-end">
|
||||
<a href="{{$content->path}}" class="btn btn-primary">Mehr lesen</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@stop
|
|
@ -23,7 +23,7 @@
|
|||
<link class="alt" href="{{storage('assets/css/color.css')}}" rel="stylesheet" type="text/css">
|
||||
<!-- SCRIPTS
|
||||
================================================== -->
|
||||
<script src="js/modernizr.js"></script><!-- Modernizr -->
|
||||
<script src="{{storage('assets/js/modernizr.js')}}"></script><!-- Modernizr -->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -38,9 +38,9 @@
|
|||
</div>
|
||||
<div class="col-lg-8 col-md-6 col-sm-4">
|
||||
<ul class="top-navigation hidden-sm hidden-xs">
|
||||
<li><a href="plan-visit.html">Plan your visit</a></li>
|
||||
<li><a href="events-calendar.html">Calendar</a></li>
|
||||
<li><a href="donate.html">Donate Now</a></li>
|
||||
<li><a href="{{url('/anfahrt')}}">Anfahrt</a></li>
|
||||
<li><a href="{{url('/wettbewerbe')}}">Wettbewerbe</a></li>
|
||||
<li><a href="{{url('/startliste')}}">Startliste</a></li>
|
||||
</ul>
|
||||
<a href="#" class="d-none d-sm-block d-md-none menu-toggle"><i class="fas fa-bars"></i></a>
|
||||
</div>
|
||||
|
@ -53,81 +53,14 @@
|
|||
<div class="col-12">
|
||||
<nav class="navigation">
|
||||
<ul class="sf-menu">
|
||||
<li><a href="index.html">Home</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="index.html">Sliders</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="index.html">Flex Slider</a></li>
|
||||
<li><a href="index-nivoslider.html">Nivo Slider</a></li>
|
||||
<li><a href="index-rev-slider.html">Revolution Slider <span class="label label-danger">New</span></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="index.html">Headers</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="index.html">Style 1</a></li>
|
||||
<li><a href="header-style2.html">Style 2</a></li>
|
||||
<li><a href="header-style3.html">Style 3</a></li>
|
||||
<li><a href="header-style4.html">Style 4 <span class="label label-danger">New</span></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="index.html">Home version 1</a></li>
|
||||
<li><a href="index1.html">Home version 2</a></li>
|
||||
<li><a href="{{url('/')}}">Home</a>
|
||||
|
||||
<li><a href="index5.html">Home version 6 <span class="label label-danger">New</span></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="megamenu"><a href="shortcodes.html">Mega Menu</a>
|
||||
<ul class="dropdown">
|
||||
<li>
|
||||
<div class="megamenu-container container">
|
||||
<div class="row">
|
||||
<div class="col-lg-3 hidden-sm"> <span class="megamenu-sub-title"><i class="fas fa-bell"></i> Today's Prayer</span>
|
||||
<iframe width="200" height="150" frameborder="0" src="http://player.vimeo.com/video/19564018?title=0&byline=0&color=007F7B"></iframe>
|
||||
</div>
|
||||
<div class="col-3"> <span class="megamenu-sub-title"><i class="fab fa-pagelines"></i> Our Ministries</span>
|
||||
<ul class="sub-menu">
|
||||
<li><a href="ministry.html">Women's Ministry</a></li>
|
||||
<li><a href="ministry.html">Men's Ministry</a></li>
|
||||
<li><a href="ministry.html">Prayer Requests</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-3"> <span class="megamenu-sub-title"><i class="far fa-clock"></i>
|
||||
Upcoming Events</span>
|
||||
<ul class="sub-menu">
|
||||
<li><a href="single-event.html">Monday Prayer</a> <span class="meta-data">Monday | 06:00 PM</span> </li>
|
||||
<li><a href="single-event.html">Staff members meet</a> <span class="meta-data">Tuesday | 08:00 AM</span> </li>
|
||||
<li><a href="single-event.html">Evening Prayer</a> <span class="meta-data">Friday | 07:00 PM</span> </li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-3"> <span class="megamenu-sub-title"><i class="fas fa-cog"></i> Features</span>
|
||||
<ul class="sub-menu">
|
||||
<li><a href="shortcodes.html">Shortcodes</a></li>
|
||||
<li><a href="typography.html">Typography</a></li>
|
||||
<li><a href="shop-product.html">Single Product <span class="label label-danger">New</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="events.html">Events</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="events.html">Events Listing</a></li>
|
||||
<li><a href="events-timeline.html">Events Timeline</a></li>
|
||||
<li><a href="events-grid.html">Events Masonry Grid</a></li>
|
||||
<li><a href="single-event.html">Single Event</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="{{url('/ausschreibung')}}">Ausschreibung</a>
|
||||
|
||||
<li><a href="gallery-2cols-pagination.html">Vorherige Editionen</a>
|
||||
<ul class="dropdown">
|
||||
|
||||
<li><a href="gallery-masonry.html">Läufermeeting 2012</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li><a href="{{url('/archiv')}}">Archiv</a>
|
||||
<li><a href="{{url('/sponsoren')}}">Sponsoren</a>
|
||||
|
||||
</li>
|
||||
|
|
|
@ -0,0 +1,49 @@
|
|||
@layout('content.master')
|
||||
@section('head')
|
||||
<title>Home Page</title>
|
||||
@stop
|
||||
@section('content')
|
||||
|
||||
<div class="nav-backed-header parallax">
|
||||
<div class="container" style="height: 55px;">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="main" role="main">
|
||||
<div id="content" class="content full">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<header class="single-post-header clearfix">
|
||||
<h2 class="post-title">So kommen Sie am Besten zu uns</h2>
|
||||
</header>
|
||||
<div class="post-content">
|
||||
<div id="gmap">
|
||||
|
||||
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d20634.06925723126!2d12.182238!3d49.724757!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xeea0d929c0d47116!2sGymnasium!5e0!3m2!1sde!2sus!4v1403544582027" style="border:0" width="600" height="450" frameborder="0"></iframe>
|
||||
</div>
|
||||
Adresse:
|
||||
<br>
|
||||
Gymnasium Neustadt
|
||||
<br>
|
||||
Bildstraße 20
|
||||
<br>92660 Neustadt a.d. Waldnaab
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="clearfix"></div>
|
||||
<div class="col-md-12">
|
||||
<div id="message"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Start Sidebar -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@stop
|
|
@ -0,0 +1,35 @@
|
|||
@layout('content.master')
|
||||
@section('head')
|
||||
<title>Home Page</title>
|
||||
@stop
|
||||
@section('content')
|
||||
|
||||
<div class="nav-backed-header parallax">
|
||||
<div class="container" style="height: 55px;">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="main" role="main">
|
||||
<div id="content" class="content full">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<header class="single-post-header clearfix">
|
||||
<h2 class="post-title">Archiv vorheriger Läufermeetin Editionen</h2>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<p class="text-muted my-5">
|
||||
Bereich wird gerade umgezogen, bitte schauen Sie später nochmal vorbei.
|
||||
</p>
|
||||
</div>
|
||||
<!-- Start Sidebar -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@stop
|
|
@ -0,0 +1,49 @@
|
|||
@layout('content.master')
|
||||
@section('head')
|
||||
<title>Home Page</title>
|
||||
@stop
|
||||
@section('content')
|
||||
|
||||
<div class="nav-backed-header parallax">
|
||||
<div class="container" style="height: 55px;">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="main" role="main">
|
||||
<div id="content" class="content full">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<header class="single-post-header clearfix">
|
||||
<h2 class="post-title">So kommen Sie am Besten zu uns</h2>
|
||||
</header>
|
||||
<div class="post-content">
|
||||
<div id="gmap">
|
||||
|
||||
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d20634.06925723126!2d12.182238!3d49.724757!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xeea0d929c0d47116!2sGymnasium!5e0!3m2!1sde!2sus!4v1403544582027" style="border:0" width="600" height="450" frameborder="0"></iframe>
|
||||
</div>
|
||||
Adresse:
|
||||
<br>
|
||||
Gymnasium Neustadt
|
||||
<br>
|
||||
Bildstraße 20
|
||||
<br>92660 Neustadt a.d. Waldnaab
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="clearfix"></div>
|
||||
<div class="col-md-12">
|
||||
<div id="message"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Start Sidebar -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@stop
|
|
@ -0,0 +1,45 @@
|
|||
@layout('content.master')
|
||||
@section('head')
|
||||
<title>Home Page</title>
|
||||
@stop
|
||||
@section('content')
|
||||
|
||||
<div class="nav-backed-header parallax">
|
||||
<div class="container" style="height: 55px;">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="main" role="main">
|
||||
<div id="content" class="content full">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<ul class="isotope-grid isotope" data-sort-id="gallery" style="position: relative; overflow: hidden; height: 891.6px;">
|
||||
<li class="col-md-4 col-sm-4 grid-item post format-image isotope-item" style="position: absolute; left: 0px; top: 0px; transform: translate(0px);">
|
||||
<div class="grid-item-inner"> <a href="images/garantie-bestzeiten.jpg" data-rel="prettyPhoto" class="media-box"> <img src="images/garantie-bestzeiten_thumb.jpg" alt=""> <span class="zoom" style="width: 317px; height: 280px; line-height: 280px;"><i class="fa fa-search"></i></span></a> </div>
|
||||
</li>
|
||||
<li class="col-md-4 col-sm-4 grid-item post format-image isotope-item" style="position: absolute; left: 0px; top: 0px; transform: translate(347px);">
|
||||
<div class="grid-item-inner"> <a href="images/1.jpg" data-rel="prettyPhoto" class="media-box"> <img src="images/1thumb.jpg" alt=""> <span class="zoom" style="width: 317px; height: 449px; line-height: 449px;"><i class="fa fa-search"></i></span></a> </div>
|
||||
</li>
|
||||
<li class="col-md-4 col-sm-4 grid-item post format-image isotope-item" style="position: absolute; left: 0px; top: 0px; transform: translate(694px);">
|
||||
<div class="grid-item-inner"> <a href="images/2.jpg" data-rel="prettyPhoto" class="media-box"> <img src="images/2thumb.jpg" alt=""> <span class="zoom" style="width: 317px; height: 452px; line-height: 452px;"><i class="fa fa-search"></i></span></a> </div>
|
||||
</li>
|
||||
<li class="col-md-4 col-sm-4 grid-item post format-image isotope-item" style="position: absolute; left: 0px; top: 0px; transform: translate(0px, 311px);">
|
||||
<div class="grid-item-inner"> <a href="images/3.jpg" data-rel="prettyPhoto" class="media-box"> <img src="images/3thumb.jpg" alt=""> <span class="zoom" style="width: 317px; height: 452px; line-height: 452px;"><i class="fa fa-search"></i></span></a> </div>
|
||||
</li>
|
||||
<li class="col-md-4 col-sm-4 grid-item post format-image isotope-item" style="position: absolute; left: 0px; top: 0px; transform: translate(347px, 480px);">
|
||||
<div class="grid-item-inner"> <a href="images/4.jpg" data-rel="prettyPhoto" class="media-box"> <img src="images/4thumb.jpg" alt=""> <span class="zoom" style="width: 317px; height: 330px; line-height: 330px;"><i class="fa fa-search"></i></span></a> </div>
|
||||
</li>
|
||||
<li class="col-md-4 col-sm-4 grid-item post format-image isotope-item" style="position: absolute; left: 0px; top: 0px; transform: translate(694px, 483px);">
|
||||
<div class="grid-item-inner"> <a href="images/5.jpg" data-rel="prettyPhoto" class="media-box"> <img src="images/5thumb.jpg" alt=""> <span class="zoom" style="width: 317px; height: 173px; line-height: 173px;"><i class="fa fa-search"></i></span></a> </div>
|
||||
</li>
|
||||
<li class="col-md-4 col-sm-4 grid-item post format-image isotope-item" style="position: absolute; left: 0px; top: 0px; transform: translate(694px, 687px);">
|
||||
<div class="grid-item-inner"> <a href="images/bericht.jpg" data-rel="prettyPhoto" class="media-box"> <img src="images/5thumb.jpg" alt=""> <span class="zoom" style="width: 317px; height: 173px; line-height: 173px;"><i class="fa fa-search"></i></span></a> </div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@stop
|
|
@ -0,0 +1,29 @@
|
|||
@layout('content.master')
|
||||
@section('head')
|
||||
<title>Home Page</title>
|
||||
@stop
|
||||
@section('content')
|
||||
|
||||
<div class="nav-backed-header parallax">
|
||||
<div class="container" style="height: 55px;">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="main" role="main">
|
||||
<div id="content" class="content full">
|
||||
<div class="container">
|
||||
|
||||
<h1>Startliste Läufermeeting Neustadt 2023</h1>
|
||||
|
||||
<embed src="/pdf/startliste2019.pdf" width="800px" height="2100px">
|
||||
<a href="/pdf/startliste2019.pdf" class="btn btn-primary btn-lg center-block">Startliste als PDF Downloaden</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@stop
|