added 500 errror page, removed category from home

master
Benjamin Völkl 2021-02-09 12:12:23 -03:00
parent 82195356c8
commit a5b9bf2201
3 changed files with 23 additions and 7 deletions

View File

@ -2,9 +2,12 @@

@section('content')

404 - Seite nicht gefunden.
<div class="container">
404 - Seite nicht gefunden.

<br>
<br>
<a href="{{url('/')}}">Zurück zur Startseite</a>
</div>

<br>
<br>
<a href="{{url('/')}}">Zurück zur Startseite</a>
@stop

View File

@ -0,0 +1,13 @@
@extends('template.'.\Setting::get('template', 'default').'.content.master')

@section('content')

<div class="container">
500 - Ein unerwarteter Fehler ist aufgetreten.

<br>
<br>
<a href="{{url('/')}}">Zurück zur Startseite</a>
</div>

@stop

View File

@ -116,10 +116,10 @@
</h6>

<!--
@if ($nach->category)
<a href="{{ route('category.get', [$nach->category->slug]) }}">
@if ($nach->list)
<a href="{{ route('list.get', [$nach->list->slug]) }}">
<div class="badge badge-primary">
<p style="margin:3px;font-size:15px;">{{ $nach->category->name}}</p>
<p style="margin:3px;font-size:15px;">{{ $nach->list->name}}</p>
</div>
</a>
@endif