Files
11ty_neocities/src/_includes/layout/base.njk

37 lines
1016 B
Plaintext
Raw Normal View History

2023-02-21 00:02:35 +10:30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2023-02-26 01:16:13 +10:30
<link rel="icon" type="image/x-icon" href="/img/fav.png">
<link rel="stylesheet" href="/css/normalize.css" />
2023-02-21 00:02:35 +10:30
<link rel="stylesheet" href="/css/styles.css" />
2023-02-22 19:56:03 +10:30
{% if title %}
<title>{{ site.title }} - {{ title }}</title>
{% else %}
<title>{{ site.title }}</title>
{% endif %}
{% if description %}
<meta name="description" content="{{ description }}">
{% else %}
<meta name="description" content="{{ site.description }}">
{% endif %}
2023-02-21 00:02:35 +10:30
</head>
<body>
<main>
2023-02-24 19:08:47 +10:30
<header>{% include 'partials/header.njk' %}</header>
2023-02-24 19:26:04 +10:30
<hr/>
<article>
<h1>{{ title }}</h1>
{{ content | safe }}
</article>
2023-02-24 19:26:04 +10:30
<hr/>
<footer>{% include 'partials/footer.njk' %}</footer>
2023-02-21 00:02:35 +10:30
</main>
2023-02-24 19:08:47 +10:30
<aside>{% include 'partials/sidebar.njk' %}</aside>
</div>
</div>
2023-02-21 00:02:35 +10:30
</body>
2023-02-22 19:56:03 +10:30
</html>