mestizo.monster/_includes/base.njk

16 lines
403 B
Text

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{ title }} - mestizo.monster</title>
<link href="/css/main.css" rel="stylesheet" />
</head>
<body>
<main>
{% include "_header.njk" %}
{{ content | safe }}
{% include "_footer.njk" %}
</main>
</body>
</html>