html to php
Ich habe einige .html-Dateien zu .php gemacht, damit der include-Befehl funktioniert
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
<!--
|
||||
Seite: Hompage der Lernplattform
|
||||
Funktion: Webseitengerüst, Anzeigen von Beiträgen, Suchfunktion etc.
|
||||
-->
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="description" content="Gästebuch Beispiel">
|
||||
<meta name="author" content="Niklas Ortmann">
|
||||
<link rel="stylesheet" href="css/main.css" />
|
||||
<title>EduForge</title>
|
||||
</head>
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
<nav>
|
||||
<?php
|
||||
include_once 'includes/navbar.html';
|
||||
?>
|
||||
</nav>
|
||||
|
||||
|
||||
<main>
|
||||
|
||||
<h1>EduForge</h1>
|
||||
<p>
|
||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et
|
||||
dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet
|
||||
clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,
|
||||
consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
|
||||
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no
|
||||
sea takimata sanctus est Lorem ipsum dolor sit amet.
|
||||
</p>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<a href="legal/impressum.html">Impressum</a>
|
||||
<a href="legal/datenschutz.html">Datenschutz</a>
|
||||
<a href="legal/nutzungsbedingungen.html">Nutzungsbedingungen</a>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user