Files
silex/views/layout.php
2022-11-15 09:23:20 +01:00

10 lines
182 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title><?= $viewsArgs['title'] ?? 'Is it a blog?' ?></title>
</head>
<body>
<?= $content ?>
</body>
</html>