mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 18:00:00 +00:00
31 lines
687 B
Plaintext
31 lines
687 B
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0"
|
|
>
|
|
|
|
<title>{{ renderData.title or title or metadata.title }}</title>
|
|
<meta
|
|
name="description"
|
|
content="{{ renderData.description or description or metadata.description }}"
|
|
>
|
|
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ 'assets/css/base.css' | url }}"
|
|
>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
{{ content | safe }}
|
|
{% include 'components/table-of-content.njk' %}
|
|
<section>
|
|
<h2>Words</h2>
|
|
{% include 'components/defintions-list.njk' %}
|
|
</section>
|
|
</main>
|
|
</body>
|