Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 32090df167 | |||
| 42816cd450 | |||
| 85cf357846 | |||
| 4c4a93865d | |||
| 0a87e4d9eb | |||
| 240296f89b | |||
| 56909742bc | |||
| bbf4b0646e |
+3
-3
@@ -16,7 +16,7 @@ Globales Menü, wird via PHP später in alle Seiten eingebunden
|
|||||||
|
|
||||||
<!-- Mobile navbar mit Burger-Symbol -->
|
<!-- Mobile navbar mit Burger-Symbol -->
|
||||||
<input type="checkbox" id="nav-toggle" class="nav__checkbox">
|
<input type="checkbox" id="nav-toggle" class="nav__checkbox">
|
||||||
<label for="nav-toggle" id="mobile-nav">
|
<label for="nav-toggle" class="mobile-nav">
|
||||||
<span>☰</span>
|
<span>☰</span>
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
@@ -151,7 +151,7 @@ Globales Menü, wird via PHP später in alle Seiten eingebunden
|
|||||||
</a>
|
</a>
|
||||||
|
|
||||||
<div class="nav__search">
|
<div class="nav__search">
|
||||||
<?php include_once 'search.php'; ?>
|
<?php include_once __DIR__ . '/search.php'; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<a href="index.php?pfad=createArticle" class="nav__item nav__button">
|
<a href="index.php?pfad=createArticle" class="nav__item nav__button">
|
||||||
@@ -165,7 +165,7 @@ Globales Menü, wird via PHP später in alle Seiten eingebunden
|
|||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
|
|
||||||
<div class="nav__search">
|
<div class="nav__search">
|
||||||
<?php include_once 'search.php'; ?>
|
<?php include_once __DIR__ . '/search.php'; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<a href="index.php?pfad=login" class="nav__item nav__button">
|
<a href="index.php?pfad=login" class="nav__item nav__button">
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
if (session_status() === PHP_SESSION_NONE) {
|
if (session_status() === PHP_SESSION_NONE) {
|
||||||
session_start();
|
session_start();
|
||||||
}
|
}
|
||||||
|
|
||||||
include_once "includes/csrf.php";
|
include_once "includes/csrf.php";
|
||||||
include_once "php/controller/index-controller.php";
|
include_once "php/controller/index-controller.php";
|
||||||
?>
|
?>
|
||||||
|
|||||||
Reference in New Issue
Block a user