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

42 lines
1.1 KiB
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" />
<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">
<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>
<div>
2023-03-01 00:19:22 +10:30
{# <header>{% include 'partials/header.njk' %}</header> #}
{# <hr/> #}
<article>
2023-03-01 00:19:22 +10:30
<h2>{{ title }}</h2>
{{ 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>
</div>
</div>
2023-02-21 00:02:35 +10:30
</body>
2023-02-22 19:56:03 +10:30
</html>