mirror of
https://git.tacowolf.net/TacoWolf/mestizo.monster.git
synced 2026-06-12 08:50:04 -04:00
16 lines
403 B
Text
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>
|