14 lines
251 B
PHP
14 lines
251 B
PHP
<?php
|
|
ob_start();
|
|
?>
|
|
|
|
<h1><?= htmlspecialchars($title) ?></h1>
|
|
<p>Willkommen auf meiner Seite!</p>
|
|
|
|
<p class="text-red-500">I am red.</p>
|
|
|
|
<button onclick="test('World')">Test</button>
|
|
|
|
<?php
|
|
$content = ob_get_clean();
|
|
require __DIR__ . '/layout.php';
|