mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
18 lines
525 B
HTML
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 }} |