fehlerbehebung

This commit is contained in:
xoy 2023-02-26 14:11:17 +01:00
parent 4babb653d7
commit 76b5b13e01
2 changed files with 3 additions and 7 deletions

View File

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

View File

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