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