site/src/_includes/base.njk
2023-10-19 21:05:29 -05:00

13 lines
341 B
Plaintext

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{% if title %}{{ title }} | {% endif %}{{ meta.siteName }}</title>
<link rel="stylesheet" href="/css/global.css" />
</head>
<body>
{{ content | safe }}
</body>
</html>