blob: bdb3a5c00a7b85701b1953bd2e46d48f96586205 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
{% do assets.addCss('theme://css/website.css', 100) %}
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{{ assets.css()|raw }}
<title>{{ header.title|e }} - {{site.title|e}}</title>
</head>
<body>
{% include 'partials/header.html.twig' %}
<div class="center">
<div class="content">
<h1>Blog pages</h1>
{{ page.content|raw }}
{% include 'partials/list.html.twig' %}
{% include 'partials/navigation.html.twig' %}
</div>
</div>
<div class=footer>
<span title="Last Edited">{{ header.date|e }}</span>
</div>
</body>
</html>
|