16 lines
300 B
HTML
16 lines
300 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ page.title }}</title>
|
|
<link rel="stylesheet" href="/assets/css/styles.css">
|
|
</head>
|
|
<body>
|
|
{% if page.neko == "true" %}
|
|
{% include neko.html %}
|
|
{% endif %}
|
|
{% include navigation.html %}
|
|
{{ content }}
|
|
</body>
|
|
</html>
|