basic header styles

This commit is contained in:
Lyn Fugmann 2024-09-15 14:58:59 +02:00
parent e173a4aa6d
commit 0b7680f38f
2 changed files with 39 additions and 4 deletions

View file

@ -9,6 +9,7 @@ eleventyComputed:
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% if title %}{{ title }} | {% endif %}ESE {{ year }}</title>
<link rel="stylesheet" href="{% getBundleFileUrl "css" %}">
</head>
<body>
{% include 'header.njk' %}
@ -20,3 +21,10 @@ eleventyComputed:
{% include 'footer.njk' %}
</body>
</html>
{% css %}
body {
font-family: sans-serif;
margin: 0;
}
{% endcss %}