From 9e24b6cac91cda97067903b7ba197ad1507acd70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20V=C3=B6lkl?= Date: Thu, 16 Sep 2021 13:32:24 +0200 Subject: [PATCH] updates --- content/includes/footer.blade.php | 4 +- content/index.blade.php | 28 ++-- content/lists/abc.blade.php | 5 - content/lists/ausbildung.blade.php | 246 ---------------------------- content/lists/default.blade.php | 24 +-- content/lists/faq.blade.php | 104 ++++++++++++ content/master.blade.php | 16 +- content/news.blade.php | 92 +---------- content/pages/arbeitgeber.blade.php | 55 ------- content/pages/branchen.blade.php | 170 ------------------- content/pages/buchen.blade.php | 57 +++++++ content/pages/faq.blade.php | 87 ---------- content/pages/merkliste.blade.php | 16 -- content/pages/regionen.blade.php | 215 ------------------------ 14 files changed, 198 insertions(+), 921 deletions(-) delete mode 100644 content/lists/abc.blade.php delete mode 100644 content/lists/ausbildung.blade.php create mode 100644 content/lists/faq.blade.php delete mode 100644 content/pages/arbeitgeber.blade.php delete mode 100644 content/pages/branchen.blade.php create mode 100644 content/pages/buchen.blade.php delete mode 100644 content/pages/faq.blade.php delete mode 100644 content/pages/merkliste.blade.php delete mode 100644 content/pages/regionen.blade.php diff --git a/content/includes/footer.blade.php b/content/includes/footer.blade.php index 9b89652..4adbd9c 100644 --- a/content/includes/footer.blade.php +++ b/content/includes/footer.blade.php @@ -13,13 +13,13 @@ diff --git a/content/index.blade.php b/content/index.blade.php index 8070d54..c08ae7a 100644 --- a/content/index.blade.php +++ b/content/index.blade.php @@ -120,7 +120,7 @@
- Lorem ipsum dolor sit amet, consectetur adipisicing elit. A asperiores consectetur consequuntur, eos exercitationem itaque iusto modi quibusdam quidem quisquam quos sunt voluptas voluptate! Architecto deleniti magni nulla possimus quaerat! + Ab sofort hier auf www.alpakas-konradenhof.de verfügbar.
@@ -137,9 +137,7 @@
@endforeach -
- {!! $nachrichten->fragment("latest_jobs")->render() !!} -
+ Ältere Nachrichten @@ -205,20 +203,18 @@ Botschadl +
+ + Mehr Produkte +
+
+
+
+
+ - - - + @stop \ No newline at end of file diff --git a/content/lists/abc.blade.php b/content/lists/abc.blade.php deleted file mode 100644 index f447cc6..0000000 --- a/content/lists/abc.blade.php +++ /dev/null @@ -1,5 +0,0 @@ -@extends('template.'.config('settings.template').'.content.master') -@section('content') - -abc -@stop \ No newline at end of file diff --git a/content/lists/ausbildung.blade.php b/content/lists/ausbildung.blade.php deleted file mode 100644 index a404b49..0000000 --- a/content/lists/ausbildung.blade.php +++ /dev/null @@ -1,246 +0,0 @@ -@extends('template.'.config('settings.template').'.content.master') -@section('content') - - -
-
- - - -
-
-
-
- -
-
-
-
-
-
-
- - - -
-

Die besten Ausbildungsstellen findest du auf jobs-oberpfalz.de

-

Jetzt Azubi Stelle aussuchen und direkt online bewerben.

-
- -
-
-
- -
-
-
- -
-
- - - - -
-
-
-

Ausbildungsplätze in der Oberpfalz

-
- @if (isset($listModel)) - {{ $listModel->description }} - @endif - - -
-
-
- - - - -
-
- -
- - -

Aktuelle Ausbildungsstellen

- - @foreach($nachrichten as $nach) - - - -
- -
-
-
-
- - - -
- - - - -
-
-
{{date('d.m.Y', strtotime($nach->created_at))}}
- -
- -
- - - - -
-
-
- - - @endforeach - - - - {!! $nachrichten->render() !!} - -
-
-
- - - -
-
- - - -
-

Top Ausbildungsbetriebe mit offenen Azubi Stellen

-

-
- - -
- - - - -
- - - - - -
- -
-@stop - - -@section('scripts') - -@stop \ No newline at end of file diff --git a/content/lists/default.blade.php b/content/lists/default.blade.php index 8468a7f..3241ef1 100644 --- a/content/lists/default.blade.php +++ b/content/lists/default.blade.php @@ -4,19 +4,17 @@ -
-
-
-

{{ $listModel->name }}

-
- @if (isset($listModel)) - {{ $listModel->description }} - @endif +
+
+

{{ $listModel->name }}

+
+ @if (isset($listModel)) + {{ $listModel->description }} + @endif -
-
+ @@ -31,7 +29,7 @@
-
+
@@ -87,6 +85,10 @@ {!! $nachrichten->render() !!} +
+
+
+
diff --git a/content/lists/faq.blade.php b/content/lists/faq.blade.php new file mode 100644 index 0000000..3241ef1 --- /dev/null +++ b/content/lists/faq.blade.php @@ -0,0 +1,104 @@ +@extends('template.'.config('settings.template').'.content.master') +@section('content') + + + + +
+
+

{{ $listModel->name }}

+
+ @if (isset($listModel)) + {{ $listModel->description }} + @endif + + +
+
+ + + + + + + + + + + +
+
+ +
+ + + + @foreach($nachrichten as $nach) + + +
+
+ @if ($nach->image) + + @else + + + @endif +
+
+ + + + +
+ {{ $nach->created_at->diffForHumans() }} +
+
+ + Lorem ipsum dolor sit amet, consectetur adipisicing elit. A asperiores consectetur consequuntur, eos exercitationem itaque iusto modi quibusdam quidem quisquam quos sunt voluptas voluptate! Architecto deleniti magni nulla possimus quaerat! +
+ + +
+
+
+
+ + + @endforeach + + + + {!! $nachrichten->render() !!} + +
+
+
+
+
+
+
+ + + + +@stop + + +@section('scripts') + +@stop \ No newline at end of file diff --git a/content/master.blade.php b/content/master.blade.php index cc9b15e..a7ac386 100644 --- a/content/master.blade.php +++ b/content/master.blade.php @@ -20,25 +20,21 @@