Files
hugo/layouts/_default/single.html
T
2017-03-05 00:27:41 -06:00

18 lines
525 B
HTML

{{ define "main" }}
<span id="page-top"></span>
<main class="main">
<article class="content" id="{{.Title | urlize}}">
<header class="content-header">
{{- partial "breadcrumb.html" . -}}
{{- partial "page-title.html" . -}}
{{- partial "content-header-links.html" . -}}
{{- partial "tags.html" . -}}
</header>
<div class="body-copy" data-section={{.Section | urlize}}>
{{.Content}}
</div>
{{- partial "content-footer.html" . -}}
</article>
</main>
{{- partial "table-of-contents.html" . -}}
{{ end }}