initial commit

This commit is contained in:
TheOnlyMace
2026-06-18 23:45:08 +02:00
commit 3ebdc96381
104 changed files with 4778 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
function includeHeader(string $pageTitle, string $pageDescription, string $currentPage = 'home'): void
{
include __DIR__ . '/header.php';
}
function includeFooter(): void
{
include __DIR__ . '/footer.php';
}