removed dynamic stuff, reverting later..
parent
bd65adce0b
commit
b2c2470fad
|
@ -64,27 +64,8 @@
|
|||
|
||||
|
||||
|
||||
@foreach(filterByContentType("Aktuelles")->take(3) as $content)
|
||||
|
||||
|
||||
|
||||
<li class="item post">
|
||||
<div class="row">
|
||||
<div class="col-md-4"> <a href="{{$content->path}}" class="media-box"> <img src="{{$content->image}}" alt="" class="img-thumbnail"> </a></div>
|
||||
<div class="col-md-8">
|
||||
<div class="post-title">
|
||||
<h2><a href="{{$content->path}}">{{$content->title}}</a></h2>
|
||||
<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>
|
||||
</li>
|
||||
|
||||
@endforeach
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
@ -98,23 +79,9 @@
|
|||
<ul>
|
||||
|
||||
|
||||
@foreach(filterByContentType("Wettbewerb")->take(3) as $content)
|
||||
|
||||
|
||||
|
||||
<li class="item event-item display-flex align-items-center">
|
||||
<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>
|
||||
</div>
|
||||
<div class="to-event-url" style="height: 54px;">
|
||||
<a href="{{$content->path}}" class="btn btn-default btn-sm">Ansehen</a>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
@endforeach
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
@ -176,16 +143,7 @@
|
|||
<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>
|
||||
|
|
|
@ -15,23 +15,33 @@
|
|||
<p class="fs-5 mb-5"></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 class="listing events-listing">
|
||||
|
||||
<section class="listing-cont mb-5">
|
||||
<ul>
|
||||
|
||||
|
||||
@foreach($contents as $content)
|
||||
|
||||
|
||||
|
||||
<li class="item event-item display-flex align-items-center">
|
||||
<div class="event-date"> <span class="date">06.</span> <span class="month">August</span> </div>
|
||||
<div class="event-detail">
|
||||
<h4><a href="{{$content->path}}">{{$content->title}}</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
<div class="to-event-url" style="height: 54px;">
|
||||
<a href="{{$content->path}}" class="btn btn-default btn-sm">Ansehen</a>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
@endforeach
|
||||
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
@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="content main-container" id="site-content">
|
||||
<div class="container">
|
||||
<section>
|
||||
|
||||
<h2 class="h3"><a class="text-decoration-none " style="color: #C71B1B" href="http://laeufermeeting-neustadt.xps/grusswort">Grußwort des Veranstalters</a></h2>
|
||||
|
||||
<ul>
|
||||
<li class="item sermon featured-sermon">
|
||||
<img src="http://laeufermeeting-neustadt.xps/template/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>
|
||||
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@stop
|
Loading…
Reference in New Issue