Move partials under paige directory

This commit is contained in:
Will Faught
2022-12-29 22:30:30 -08:00
parent 2340651c82
commit 2ece967314
34 changed files with 56 additions and 56 deletions

View File

@@ -0,0 +1,8 @@
{{ if .Title }}
{{ $class := "display-5" }}
{{ if .IsHome }}
{{ $class = "display-1" }}
{{ end }}
{{ $title := .Title | markdownify }}
<h1 class="{{ $class }} fw-bold text-center">{{ if .Params.link }}<a href="{{ .Params.link }}">{{ $title }}</a>{{ else }}{{ $title }}{{ end }}{{ if .Scratch.Get "paige_show_full_pages" }}<a class="small paige-header-link" href="{{ .RelPermalink }}">#</a>{{ end }}</h1>
{{ end }}