Files
𝓜𝓪𝓬𝓮™ b89887106d Inital commit
2026-04-02 11:54:46 +02:00

14 lines
250 B
PHP

<?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';
}