36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
<?php $_shouldextend[1]=1; ?>
|
|
|
|
<?php $this->startSection("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>
|
|
<?php $this->stopSection(); ?>
|
|
|
|
<?php $this->startSection("cssextra"); ?>
|
|
<style>
|
|
body > div {
|
|
background-color: <?php echo \htmlentities($rd->query['bgcolor'] ?? 'ffffff'??'', ENT_QUOTES, 'UTF-8', false); ?>
|
|
|
|
}
|
|
</style>
|
|
<?php $this->stopSection(); ?>
|
|
|
|
<?php $this->startSection("jsextra"); ?>
|
|
<script src="/js/highlight.min.js"></script><script>hljs.highlightAll();</script>
|
|
<?php $this->stopSection(); ?>
|
|
<?php if (isset($_shouldextend[1])) { echo $this->runChild("layouts.layout"); } ?> |