Add paige-* classes and IDs to all HTML structures

This commit is contained in:
Will Faught
2023-02-06 21:21:33 -08:00
parent b9650b0209
commit 5e50b4046f
7 changed files with 104 additions and 34 deletions

View File

@@ -6,17 +6,17 @@
{{ $last := templates.Exists "partials/paige/footer-last.html" }}
{{ if or $copyright $credit $first $last }}
<footer>
<footer id="paige-footer">
{{ if $first }}
{{ partial "paige/footer-first.html" . }}
{{ end }}
{{ if $copyright }}
<p class="{{ if $credit }} mb-0 {{ end }} text-center text-secondary">{{ $copyright | markdownify }}</p>
<p class="{{ if $credit }} mb-0 {{ end }} text-center text-secondary" id="paige-copyright">{{ $copyright | markdownify }}</p>
{{ end }}
{{ if $credit }}
<p class="text-center"><a class="link-secondary text-decoration-none" href="https://github.com/willfaught/paige">Paige Theme</a></p>
<p class="text-center"><a class="link-secondary text-decoration-none" href="https://github.com/willfaught/paige" id="paige-credit">Paige Theme</a></p>
{{ end }}
{{ if $last }}