fehlerbehebung

This commit is contained in:
xoy 2023-02-26 14:11:17 +01:00
parent 39756fb537
commit b5dde8b09b
2 changed files with 3 additions and 7 deletions

View File

@ -26,7 +26,7 @@
<header> <header>
<img src="/images/logo_ctdo.svg" alt="ctdo logo"> <img src="/images/logo_ctdo.svg" alt="ctdo logo">
<?php print_element("nav"); echo "test"; ?> <?php print_file("elements/nav.html"); ?>
</header> </header>
<main> <main>

View File

@ -1,11 +1,7 @@
<?php <?php
function print_element($element_name) { function print_file($path) {
print(file_get_contents("/elements/$element_name.html")); print(file_get_contents($path));
}
function print_event($event_name) {
print(file_get_contents("/events/$element_name.html"));
} }
?> ?>