mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
24 lines
729 B
HTML
24 lines
729 B
HTML
{{ define "main" }}
|
|
{{$title := .Title}}
|
|
<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" . -}}
|
|
<!-- temporary WIP badge; should be removed before site launch -->
|
|
<!-- {{- if .Params.wip -}}
|
|
<div id="beingreviewed">WIP</div>
|
|
{{- end -}} -->
|
|
{{ $title := .Title }}
|
|
</header>
|
|
<div class="body-copy" data-section={{.Section | urlize}}>
|
|
{{.Content}}
|
|
</div>
|
|
{{- partial "content-footer.html" . -}}
|
|
</article>
|
|
</main>
|
|
{{- partial "table-of-contents.html" . -}}
|
|
{{ end }} |