Webseite ohne Anmeldung läuft auf laravel
This commit is contained in:
34
M5/Dossier/emensa/views/home.blade.php
Normal file
34
M5/Dossier/emensa/views/home.blade.php
Normal file
@@ -0,0 +1,34 @@
|
||||
@extends("layouts.layout")
|
||||
|
||||
@section("content")
|
||||
<header class="mt-5">
|
||||
<h1>Hauptseite E-Mensa</h1>
|
||||
<img src="/img/test.jpg"
|
||||
alt="Testbild von https://cdn.pixabay.com/photo/2014/06/03/19/38/road-sign-361513_960_720.jpg">
|
||||
</header>
|
||||
<nav class="mt-5">
|
||||
<strong>Navigation</strong>
|
||||
<ul>
|
||||
<li><a href="/demo">Demo</a></li>
|
||||
<li><a href="/dbconnect">Datenbank: Gerichte</a></li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li><a href="/debug"><code class="language-php">phpinfo();</code></a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<footer>
|
||||
© Team-Name DBWT
|
||||
</footer>
|
||||
@endsection
|
||||
|
||||
@section("cssextra")
|
||||
<style>
|
||||
body > div {
|
||||
background-color: {{$rd->query['bgcolor'] ?? 'ffffff'}}
|
||||
}
|
||||
</style>
|
||||
@endsection
|
||||
|
||||
@section("jsextra")
|
||||
<script src="/js/highlight.min.js"></script><script>hljs.highlightAll();</script>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user