This commit is contained in:
Viktor Sergeev
2025-06-16 10:28:54 +02:00
parent d435ad36b4
commit 23e4ded0f3
22 changed files with 83 additions and 612 deletions

View File

@@ -1,8 +1,8 @@
<?php
include dirname(__DIR__).'/header.phtml';
?>
include dirname(__DIR__) . '/Header/header.phtml';
?>
<article>
<article>
<h2>Virtuelles Museum</h2>
<span class="articleInfo">John Doe | 12.08.2018 um 10:18 Uhr</span>
@@ -18,4 +18,4 @@ include dirname(__DIR__).'/header.phtml';
Praesent ut quam.
</p>
</article>
<?php include dirname(__DIR__).'/footer.phtml'; ?>
<?php include dirname(__DIR__) . '/Footer/footer.phtml'; ?>

View File

@@ -1,8 +1,7 @@
<?php
include dirname(__DIR__).'/header.phtml';
?>
<article>
include dirname(__DIR__) . '/Header/header.phtml';
?>
<article>
<h2>Implement Controller</h2>
<span class="articleInfo">John Doe | 18.07.2018 um 18:43 Uhr</span>
@@ -18,4 +17,4 @@ include dirname(__DIR__).'/header.phtml';
Praesent ut quam.
</p>
</article>
<?php include dirname(__DIR__).'/footer.phtml'; ?>
<?php include dirname(__DIR__) . '/Footer/footer.phtml'; ?>

View File

@@ -1,8 +1,7 @@
<?php
include dirname(__DIR__).'/header.phtml';
include dirname(__DIR__) . '/Header/header.phtml';
?>
<!-- <a href="?controller=guestbook&do=showGuestbookForm">Neuen Eintrag schreiben</a> -->
<article>
<h2>Willkommen</h2>
<p>
@@ -19,5 +18,5 @@ include dirname(__DIR__).'/header.phtml';
Nunc sed lacus at augue bibendum dapibus.
</p>
</article>
<?php include dirname(__DIR__).'/footer.phtml'; ?>
<?php include dirname(__DIR__) . '/Footer/footer.phtml'; ?>