hugo-theme-termlite/layouts/blog/single.html

18 lines
412 B
HTML

{{ define "head_css" }}
{{ partialCached "blog/css.html" . }}
{{ end }}
{{ define "main" }}
<article class="content">
<header class="page-header">
{{ partial "page_header.html" (dict "page" .) }}
</header>
{{ .Content }}
<footer class="page-footer">
{{ partial "page/footer.html" . }}
{{ partial "page/prev_next_navigation.html" . }}
</footer>
</article>
{{ end }}