7 lines
437 B
HTML
7 lines
437 B
HTML
{{ if .Title }}
|
|
{{ $class := .Params.paige.title_class | default "display-5 fw-bold text-center" }}
|
|
{{ $title := .Title | markdownify }}
|
|
|
|
<h1 class="{{ $class }}">{{ if .Params.link }}<a href="{{ .Params.link }}">{{ $title }}</a>{{ else }}{{ $title }}{{ end }}{{ if .Scratch.Get "paige_show_full_pages" }}<a aria-label="Link to this section" class="paige-header-link" href="{{ .RelPermalink }}">#</a>{{ end }}</h1>
|
|
{{ end }}
|