21 lines
460 B
HTML
21 lines
460 B
HTML
<!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>
|
|
|