Add CSS IDs for site description, title

This commit is contained in:
Will Faught
2024-06-26 21:06:33 -07:00
parent aaffec930c
commit 9dcba24a26
2 changed files with 6 additions and 2 deletions

View File

@@ -1,8 +1,8 @@
{{ $page := . }}
{{ with $page.Param "paige.site_title" }}
<p class="display-1 fw-bold mb-2 text-center">{{ . | markdownify }}</p>
<p class="display-1 fw-bold mb-2 text-center" id="paige-site-title">{{ . | markdownify }}</p>
{{ end }}
{{ with $page.Param "paige.site_description" }}
<p class="lead text-center">{{ . | markdownify }}</p>
<p class="lead text-center" id="paige-site-description">{{ . | markdownify }}</p>
{{ end }}