mestizo.monster/_includes/base.njk

14 lines
387 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>
{% include "_header.njk" %}
<main>{{ content | safe }}</main>
{% include "_footer.njk" %}
</body>
</html>