last for today

master
Benjamin Völkl 2022-01-01 23:51:16 +01:00
parent 3ee7124605
commit f72ffadd84
2 changed files with 57 additions and 3 deletions

View File

@ -130,7 +130,6 @@
<h2>Other Themes</h2>
<br>
<br>
<br>


</div>
@ -181,7 +180,7 @@


<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal fade" id="exampleModal" data-bs-backdrop="static" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
@ -215,7 +214,7 @@

<br>

<img src="https://i.gifer.com/XG0z.gif" class="img-fluid" width="100%">
<img src="https://i.gifer.com/XG0z.gif" class="img-fluid" width="100%" loading="lazy">




View File

@ -0,0 +1,55 @@
@extends('template.'.config('settings.template').'.content.master')
@section('content')


<div class="container">

<div class="row">
<div class="col">
<br>
<br>

<br>
<br>
<br>
<h1>404 Error</h1>
<p class="text-muted">This site does not exist. </p>

<br>
<br>
<p class="fs-4"> Either you misspelled the URL or the page got deleted.</p>
<br>
<a class="btn btn-primary" href="{{url('/')}}">Return to the Home Page</a>
<br>
<br>
<br>

<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>



</div>
</div>




</div>

@stop