10 lines
165 B
PHP
10 lines
165 B
PHP
<?php
|
|
ob_start();
|
|
?>
|
|
|
|
<h1><?= htmlspecialchars($title) ?></h1>
|
|
<p>Willkommen auf meiner Seite!</p>
|
|
|
|
<?php
|
|
$content = ob_get_clean();
|
|
require __DIR__ . '/layout.php';
|