Remove container for site description, title

This commit is contained in:
Will Faught
2024-07-12 18:09:49 -07:00
parent 1336b1a963
commit bc9e46d544

View File

@@ -38,16 +38,12 @@
{{ partial "paige/header-first.html" $page }}
{{ end }}
{{ if or $description $title }}
<div class="mb-3 text-center">
{{ with $title }}
<p class="display-1 fw-bold mb-2" id="paige-site-title">{{ . | markdownify }}</p>
{{ end }}
{{ with $title }}
<p class="display-1 fw-bold mb-2 text-center" id="paige-site-title">{{ . | markdownify }}</p>
{{ end }}
{{ with $description }}
<p class="lead" id="paige-site-description">{{ . | markdownify }}</p>
{{ end }}
</div>
{{ with $description }}
<p class="lead text-center" id="paige-site-description">{{ . | markdownify }}</p>
{{ end }}
{{ with $menu }}