blob: 4a563ab717106ff327866feb35642f7b7f487922 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{{ define "main" }}
<article>
<h2>{{ .Title}}</h2>
<hr>
{{ .Page.Content }}
</article>
{{- if .Params.primary_menu }}
{{ partial "single/bottom_nav.html" (dict "menuID" .Page.Params.primary_menu "page" .) }}
{{- end }}
<footer class="copyright">
{{ partial "single/dates.html" . }}
</footer>
{{- end }}
|