21 lines
460 B
HTML
Raw Permalink Normal View History

2025-02-08 18:42:22 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/styles.css">
<title>{{ block "title" . }}
{{ .Site.Title }}
{{ end }}</title>
</head>
<body>
<div class="container centre">
{{ partial "header/main.html" . }}
{{ block "main" . }}
<!-- The part of the page that begins to differ between templates -->
{{ end }}
{{ partial "footer/main.html" }}
</div>
</body>
</html>