updated theme to latest version
parent
b8f66ec899
commit
8c7ac20333
|
@ -0,0 +1,40 @@
|
||||||
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
|
@section('content')
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<h1>Seite nicht gefunden</h1>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
<a href="{{url('/')}}">Zurück zur Startseite</a>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@stop
|
|
@ -8,6 +8,6 @@
|
||||||
<link href="{{asset('template/css/main.css')}}" rel="stylesheet" >
|
<link href="{{asset('template/css/main.css')}}" rel="stylesheet" >
|
||||||
|
|
||||||
|
|
||||||
@include('template.'.config('settings.template').'.includes.integrations')
|
@include('template.'.config('settings.template').'.content.includes.integrations')
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,75 +1,78 @@
|
||||||
@extends('template.'.config('settings.template').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<div class="jumbotron js--add-gradient">
|
|
||||||
|
@section('content')
|
||||||
|
|
||||||
|
<div class="jumbotron js--add-gradient">
|
||||||
|
<div class="container">
|
||||||
|
<div class="jumbotron__container">
|
||||||
|
<h2 class="jumbotron__subtitle">
|
||||||
|
Wir verkaufen auf 5 verschiedenen Märkte unser
|
||||||
|
</h2>
|
||||||
|
<h1 class="jumbotron__title">
|
||||||
|
Bio-Holzofenbrot
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="jumbotron__container">
|
<div class="row">
|
||||||
<h2 class="jumbotron__subtitle">
|
<h1>Biohof Finkenhammer - Aktuelle Angebote und Informationen</h1>
|
||||||
Wir verkaufen auf 5 verschiedenen Märkte unser
|
|
||||||
</h2>
|
|
||||||
<h1 class="jumbotron__title">
|
|
||||||
Bio-Holzofenbrot
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="row">
|
||||||
</div>
|
<div class="col-12">
|
||||||
|
<h2 id="aktuelles">Aktuelles</h2>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@foreach($nachrichten as $nach)
|
||||||
|
<div class="col-12 col-md-6 col-lg-4" style="margin-bottom: 80px;">
|
||||||
|
<div class="card h-100 shadow-lg" id="news-{{$nach->id}}">
|
||||||
|
@if ($nach->image)
|
||||||
|
<img src="{{ asset('uploads/' . $nach->image) }}" class="img-responsive">
|
||||||
|
@endif
|
||||||
|
<div class="card-body">
|
||||||
|
<h3 class="card-title">
|
||||||
|
{{$nach->title}}
|
||||||
|
</h3>
|
||||||
|
<h7 class="card-subtitle mb-2">
|
||||||
|
@if ($nach->user and $nach->user->public_author == 1)
|
||||||
|
<a class="text-dark" href="{{ route('author.get', [$nach->user->slug]) }}">
|
||||||
|
<img src="{{ $nach->user->gravatar() }}" width="32" class="rounded-circle">
|
||||||
|
{{ $nach->user->name }}</a> -
|
||||||
|
@endif
|
||||||
|
<span style="font-weight: normal " class="text-dark">{{date('d.m.Y H:i', strtotime($nach->created_at))}}</span>
|
||||||
|
|
||||||
|
</h7>
|
||||||
|
|
||||||
<div class="container">
|
|
||||||
<div class="row">
|
|
||||||
<h1>Biohof Finkenhammer - Aktuelle Angebote und Informationen</h1>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-12">
|
|
||||||
<h2 id="aktuelles">Aktuelles</h2>
|
|
||||||
<br>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
@foreach($nachrichten as $nach)
|
|
||||||
<div class="col-12 col-md-6 col-lg-4" style="margin-bottom: 80px;">
|
|
||||||
<div class="card h-100 shadow-lg" id="news-{{$nach->id}}">
|
|
||||||
@if ($nach->image)
|
|
||||||
<img src="{{ asset('uploads/' . $nach->image) }}" class="img-responsive">
|
|
||||||
@endif
|
|
||||||
<div class="card-body">
|
|
||||||
<h3 class="card-title">
|
|
||||||
{{$nach->title}}
|
|
||||||
</h3>
|
|
||||||
<h7 class="card-subtitle mb-2">
|
|
||||||
@if ($nach->user and $nach->user->public_author == 1)
|
|
||||||
<a class="text-dark" href="{{ route('author.get', [$nach->user->slug]) }}">
|
|
||||||
<img src="{{ $nach->user->gravatar() }}" width="32" class="rounded-circle">
|
|
||||||
{{ $nach->user->name }}</a> -
|
|
||||||
@endif
|
|
||||||
<span style="font-weight: normal " class="text-dark">{{date('d.m.Y H:i', strtotime($nach->created_at))}}</span>
|
|
||||||
|
|
||||||
</h7>
|
|
||||||
|
|
||||||
|
|
||||||
{!!Str::limit( $nach->nachrichten ,600)!!}
|
{!!Str::limit( $nach->nachrichten ,600)!!}
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
@endforeach
|
@endforeach
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
@stop
|
@stop
|
|
@ -6,11 +6,14 @@
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@include('template.'.config('settings.template').'.content.includes.header')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@yield('content')
|
@yield('content')
|
||||||
|
|
||||||
@include('template.'.config('settings.template').'.includes.footer')
|
@include('template.'.config('settings.template').'.content.includes.footer')
|
||||||
@include('template.'.config('settings.template').'.includes.scripts')
|
@include('template.'.config('settings.template').'.content.includes.scripts')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('template.'.\Setting::get('template', 'default').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<div class="breadcrumbs">
|
<div class="breadcrumbs">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('template.'.\Setting::get('template', 'default').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<div class="breadcrumbs">
|
<div class="breadcrumbs">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('template.'.\Setting::get('template', 'default').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<div class="breadcrumbs">
|
<div class="breadcrumbs">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('template.'.\Setting::get('template', 'default').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<div class="breadcrumbs">
|
<div class="breadcrumbs">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('template.'.\Setting::get('template', 'default').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('template.'.\Setting::get('template', 'default').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<div class="breadcrumbs">
|
<div class="breadcrumbs">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('template.'.\Setting::get('template', 'default').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<div class="breadcrumbs">
|
<div class="breadcrumbs">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('template.'.\Setting::get('template', 'default').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<div class="breadcrumbs">
|
<div class="breadcrumbs">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('template.'.\Setting::get('template', 'default').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="breadcrumbs">
|
<div class="breadcrumbs">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('template.'.\Setting::get('template', 'default').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('template.'.\Setting::get('template', 'default').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('template.'.\Setting::get('template', 'default').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<div class="breadcrumbs">
|
<div class="breadcrumbs">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('template.'.\Setting::get('template', 'default').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<div class="breadcrumbs">
|
<div class="breadcrumbs">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('template.'.\Setting::get('template', 'default').'.content.master')
|
@extends('template.'.config('settings.template').'.content.master')
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<div class="breadcrumbs">
|
<div class="breadcrumbs">
|
||||||
|
|
Loading…
Reference in New Issue