Created simple blog.

This commit is contained in:
WickedJack99
2025-07-28 15:04:22 +02:00
parent 93c17ca16c
commit 7b91d32f23
10 changed files with 2132 additions and 1 deletions

6
includes/footer.php Normal file
View File

@@ -0,0 +1,6 @@
</main>
<footer>
<p style="text-align:center;">&copy; <?= date('Y') ?> Jack's Blog</p>
</footer>
</body>
</html>

10
includes/header.php Normal file
View File

@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Mein Blog</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<nav><a href="index.php">🏠 Home</a></nav>
<main>