mirror of
https://github.com/andrewgioia/blog.git
synced 2024-11-14 20:44:47 +00:00
22 lines
450 B
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> |