blob: c00d19842684d839c3ecfc699e87a9936057e536 (
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
|
<!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 }}</title>
</head>
<body>
<a href="https://sowgro.net" class="iconbutton homebutton">
<span class="icon">home</span>
</a>
<div class="center">
<div class="content">
{{ page.content|raw }}
</div>
</div>
<div class=datebox>
<span class="date">{{ header.date|e }}</span>
</div>
</body>
</html>
|