Files
hugo/layouts/_default/single.html
T
2017-03-14 11:27:43 -05:00

20 lines
565 B
HTML

{{ define "main" }}
<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" . -}}
{{ with .Params.wip}}
<div class="wip">WIP</div>
{{ end }}
</header>
<div class="body-copy" data-section={{.Section | urlize}}>
{{.Content}}
</div>
{{- partial "content-footer.html" . -}}
</article>
</main>
{{- partial "table-of-contents.html" . -}}
{{ end }}