summaryrefslogtreecommitdiff
path: root/layouts/blog/single.html
blob: cc0a4fd23e561c3b0c05415736cab5e88f18253c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<head>
{{ partial "head.html" . }}
<title>{{ .Title }} | {{ .Site.Title }}</title>
</head>
<body>
{{ partial "navigation.html" . }}
<h1>{{ .Title }}</h1>
{{ .TableOfContents }}
{{ .Content }}
{{ partial "footer.html" . }}
</body>
</html>