SandpointsTheme/layouts/_default/single.html

19 lines
641 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{{- define "main" -}}
{{- partial "single-page-graph.html" . -}}
{{- partial "page-header.html" . -}}
<main class="content">
<div class="title"><span class="supt">{{ .Section }}</span>{{ .Title }}</div>
<div class="article">{{ .Content }}</div>
<div class="page-menu">
<aside class="toc">
{{ if ne (trim .TableOfContents "\n") "<nav id=\"TableOfContents\"></nav>" }}
{{ .TableOfContents }}
{{ end }}
</aside>
<aside class="graph-menus">
{{- partial "menu_verbs.html" . -}}
{{- partial "deferred_page_graph.html" . -}}
</aside>
</div>
</main>
{{ end }}