08 Gemeinsames Template
Aufgabenstellung
Lösungsschritte
Schritt 1
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Meine Seite</title>
<!-- <base ...>: Relative urls start at index.php's directory -->
<base href="<?= dirname($_SERVER['SCRIPT_NAME']); ?>/" />
<link rel="stylesheet" href="public/css/app.css">
</head>
<body>
<?= $content ?>
<script src="public/js/app.js"></script>
</body>
</html>Schritt 2
Schritt 3
Schritt 4
Testing
Last updated
Was this helpful?