21 lines
748 B
Plaintext
21 lines
748 B
Plaintext
<!doctype html>
|
|
{% from "nodes/Node.njk" import Node %}
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ page.title }}</title>
|
|
<meta name="description" content="{{ page.description | join(' ') }}"/>
|
|
<link rel="stylesheet" href="/main.css"/>
|
|
<link rel="stylesheet" href="/public/styles/highlightjs-theme.css"/>
|
|
{{ googleFonts('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500&display=swap') }}
|
|
</head>
|
|
<body class="text-base pt-16">
|
|
{{ Node('Navbar', {}, { headings: page.headings, url: url }) }}
|
|
{% for child in page.children %}
|
|
{{ Node(child.type, child, { headings: page.headings, url: url }) }}
|
|
{% endfor %}
|
|
</body>
|
|
</html>
|