Files
netwatch/app/templates/layout.php
2026-02-16 13:56:01 +01:00

22 lines
338 B
PHP

<?php
/**
* layout.php
*
* Basislayout fuer Header + Content + Footer.
*/
?>
<?php include __DIR__ . '/header.php'; ?>
<div class="content-wrapper">
<?php
if (isset($content)) {
echo $content;
} else {
echo '<p>Kein Inhalt uebergeben.</p>';
}
?>
</div>
<?php include __DIR__ . '/footer.php'; ?>