14 lines
250 B
PHP
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';
|
|
}
|
|
|