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-03-01 15:59:35 +10:30
|
|
|
<meta property="og:image" content="/_assets/img/cropped.png" />
|
2023-02-26 01:16:13 +10:30
|
|
|
<link rel="icon" type="image/x-icon" href="/img/fav.png">
|
2023-02-28 18:39:40 +10:30
|
|
|
<link rel="stylesheet" href="/_assets/css/normalize.css" />
|
|
|
|
<link rel="stylesheet" href="/_assets/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-28 21:25:22 +10:30
|
|
|
<div>
|
2023-03-01 00:19:22 +10:30
|
|
|
{# <header>{% include 'partials/header.njk' %}</header> #}
|
|
|
|
{# <hr/> #}
|
2023-02-28 21:25:22 +10:30
|
|
|
<article>
|
2023-03-01 00:19:22 +10:30
|
|
|
<h2>{{ title }}</h2>
|
2023-02-28 21:25:22 +10:30
|
|
|
{{ content | safe }}
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
<footer>
|
|
|
|
<hr/>
|
|
|
|
{% 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>
|
2023-02-24 16:47:41 +10:30
|
|
|
</div>
|
|
|
|
</div>
|
2023-02-21 00:02:35 +10:30
|
|
|
</body>
|
2023-02-22 19:56:03 +10:30
|
|
|
</html>
|
|
|
|
|