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

18
post.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
include 'includes/header.php';
require_once 'Parsedown.php';
$slug = $_GET['slug'] ?? '';
$filepath = "posts/$slug.md";
if (!preg_match('/^[a-zA-Z0-9\-]+$/', $slug) || !file_exists($filepath)) {
echo "<p>Beitrag nicht gefunden.</p>";
include 'includes/footer.php';
exit;
}
$md = file_get_contents($filepath);
$Parsedown = new Parsedown();
echo $Parsedown->text($md);
include 'includes/footer.php';