.html -> .php
refactoring
This commit is contained in:
@@ -41,9 +41,9 @@
|
|||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<a href="legal/impressum.html">Impressum</a>
|
<a href="legal/impressum.php">Impressum</a>
|
||||||
<a href="legal/datenschutz.html">Datenschutz</a>
|
<a href="legal/datenschutz.php">Datenschutz</a>
|
||||||
<a href="legal/nutzungsbedingungen.html">Nutzungsbedingungen</a>
|
<a href="legal/nutzungsbedingungen.php">Nutzungsbedingungen</a>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
@@ -35,9 +35,9 @@
|
|||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<a href="impressum.php">Impressum</a>
|
<a href="legal/impressum.php">Impressum</a>
|
||||||
<a href="datenschutz.php">Datenschutz</a>
|
<a href="legal/datenschutz.php">Datenschutz</a>
|
||||||
<a href="nutzungsbedingungen.html">Nutzungsbedingungen</a>
|
<a href="legal/nutzungsbedingungen.php">Nutzungsbedingungen</a>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
+3
-3
@@ -35,9 +35,9 @@
|
|||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<a href="impressum.php">Impressum</a>
|
<a href="legal/impressum.php">Impressum</a>
|
||||||
<a href="datenschutz.php">Datenschutz</a>
|
<a href="legal/datenschutz.php">Datenschutz</a>
|
||||||
<a href="nutzungsbedingungen.html">Nutzungsbedingungen</a>
|
<a href="legal/nutzungsbedingungen.php">Nutzungsbedingungen</a>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
+3
-3
@@ -35,9 +35,9 @@
|
|||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<a href="impressum.php">Impressum</a>
|
<a href="legal/impressum.php">Impressum</a>
|
||||||
<a href="datenschutz.php">Datenschutz</a>
|
<a href="legal/datenschutz.php">Datenschutz</a>
|
||||||
<a href="nutzungsbedingungen.html">Nutzungsbedingungen</a>
|
<a href="legal/nutzungsbedingungen.php">Nutzungsbedingungen</a>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
+4
-4
@@ -4,13 +4,13 @@ Globales Menü, wird via PHP später in alle Seiten eingebunden
|
|||||||
<nav>
|
<nav>
|
||||||
<img src="../images/logo.png" style="height: 44px; ">
|
<img src="../images/logo.png" style="height: 44px; ">
|
||||||
|
|
||||||
<a href = "../content/informatik.html" style = "color: white; padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Informatik</b></a>
|
<a href = "../content/informatik.php" style = "color: white; padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Informatik</b></a>
|
||||||
|
|
|
|
||||||
<a href = "../content/mathe.html" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Mathe</b></a>
|
<a href = "../content/mathe.php" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Mathe</b></a>
|
||||||
|
|
|
|
||||||
<a href = "../content/physik.html" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Physik</b></a>
|
<a href = "../content/physik.php" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Physik</b></a>
|
||||||
|
|
|
|
||||||
<a href = "../content/profile.html" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Dein Profil</b></a>
|
<a href = "../content/profile.php" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Dein Profil</b></a>
|
||||||
|
|
|
|
||||||
<?php
|
<?php
|
||||||
include_once 'includes/search.php';
|
include_once 'includes/search.php';
|
||||||
|
|||||||
@@ -19,14 +19,14 @@
|
|||||||
<?php
|
<?php
|
||||||
include_once 'includes/navbar.php';
|
include_once 'includes/navbar.php';
|
||||||
//Dynamischer Inhalt (später mit php...):
|
//Dynamischer Inhalt (später mit php...):
|
||||||
include_once 'content/home.html';
|
include_once 'content/home.php';
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<a href="legal/impressum.html">Impressum</a>
|
<a href="legal/impressum.php">Impressum</a>
|
||||||
<a href="legal/datenschutz.html">Datenschutz</a>
|
<a href="legal/datenschutz.php">Datenschutz</a>
|
||||||
<a href="legal/nutzungsbedingungen.html">Nutzungsbedingungen</a>
|
<a href="legal/nutzungsbedingungen.php">Nutzungsbedingungen</a>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
+3
-3
@@ -36,9 +36,9 @@
|
|||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<a href="impressum.html">Impressum</a>
|
<a href="legal/impressum.php">Impressum</a>
|
||||||
<a href="datenschutz.php">Datenschutz</a>
|
<a href="legal/datenschutz.php">Datenschutz</a>
|
||||||
<a href="nutzungsbedingungen.html">Nutzungsbedingungen</a>
|
<a href="legal/nutzungsbedingungen.php">Nutzungsbedingungen</a>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
@@ -35,9 +35,9 @@
|
|||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<a href="impressum.php">Impressum</a>
|
<a href="legal/impressum.php">Impressum</a>
|
||||||
<a href="datenschutz.php">Datenschutz</a>
|
<a href="legal/datenschutz.php">Datenschutz</a>
|
||||||
<a href="nutzungsbedingungen.html">Nutzungsbedingungen</a>
|
<a href="legal/nutzungsbedingungen.php">Nutzungsbedingungen</a>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user