Files
paige-hugo/layouts/partials/paige/title.html
2023-01-28 19:38:28 -08:00

7 lines
484 B
HTML

{{ $class := .Param "paige.page.title.class" | default "display-5 fw-bold text-center" }}
{{ $title := cond (.Param "paige.page.title.hide" | not) (.Title | markdownify) "" }}
{{ if $title }}
<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 }}