You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
465 B
HTML
16 lines
465 B
HTML
{{ $page := . }}
|
|
|
|
{{ partial "paige/page-metadata.html" $page }}
|
|
|
|
{{ with $page.Param "paige.alert" }}
|
|
<div class="alert alert-{{ .type }}" role="alert">{{ .message | markdownify }}</div>
|
|
{{ end }}
|
|
|
|
{{ if and $page.Content (ne $page.TableOfContents `<nav id="TableOfContents"></nav>`) }}
|
|
<div class="mw-100" id="paige-toc">
|
|
<div class="border mb-3 pe-3 ps-3 pt-3 rounded">
|
|
{{ $page.TableOfContents }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|