15 lines
382 B
Twig
15 lines
382 B
Twig
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>{% yield title %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<base href="https://blog.flumm.io">
|
|
<link rel="stylesheet" href="./css/blog.css?v={{ filemtime(__dir__ . '/../../public/css/blog.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="container" id="blog">
|
|
{% yield content %}
|
|
</div>
|
|
</body>
|
|
</html>
|