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

18 lines
514 B
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" />
<link rel="stylesheet" href="/css/styles.css" />
<title>{{ title }}</title>
</head>
<body>
<header>{% include 'partials/header.njk' %}</header>
<nav>{% include 'partials/navigation.njk' %}</nav>
<main>
<h1>{{ title }}</h1>
{{ content | safe }}
</main>
<footer>{% include 'partials/footer.njk' %}</footer>
</body>
</html>