blog/layouts/_default/baseof.html

22 lines
450 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>
{{ block "title" . }} {{ .Site.Title }} {{ end }}
</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
{{ block "header" . }}{{ partial "header.html" .}}{{ end }}
{{ block "main" . }}
<!-- The part of the page that begins to differ between templates -->
{{ end }}
{{ block "footer" . }}
{{ end }}
</body>
</html>