2023-02-21 00:02:35 +10:30
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2023-03-02 15:56:23 +10:30
|
|
|
<meta charset="UTF-8"/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
|
|
<meta property="og:image" content="/_assets/img/cropped.png"/>
|
2023-03-02 15:46:46 +10:30
|
|
|
<link rel="icon" type="image/x-icon" href="/_assets/img/fav.png">
|
2023-03-02 15:56:23 +10:30
|
|
|
{# <link rel="stylesheet" href="/_assets/css/normalize.css" /> #}
|
2023-03-02 16:22:41 +10:30
|
|
|
{# <link rel="stylesheet" href="/_assets/css/styles.css"/> #}
|
2023-03-02 15:56:23 +10:30
|
|
|
|
2023-03-02 16:22:41 +10:30
|
|
|
{% set normalise %}
|
|
|
|
{% include "normalize.css" %}
|
|
|
|
{% endset %}
|
|
|
|
<style>
|
|
|
|
{{normalise | cssmin | safe}}
|
|
|
|
</style>
|
2023-03-02 15:56:23 +10:30
|
|
|
{% set css %}
|
|
|
|
{% include "styles.css" %}
|
|
|
|
{% endset %}
|
|
|
|
<style>
|
|
|
|
{{css | cssmin | safe}}
|
|
|
|
</style>
|
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-02 15:56:23 +10:30
|
|
|
<h2>{{ title }}</h2>
|
|
|
|
{{ content | safe }}
|
2023-02-28 21:25:22 +10:30
|
|
|
</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-03-02 15:56:23 +10:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|