Blog: Collapse the hierarchy of a single blog post template to a single <main>

Remove the nested <article>. It's not necessary.
This commit is contained in:
Eryn Wells 2024-08-08 09:57:33 -10:00
parent 4f9cffb1ad
commit 23c0ad3fa8

View file

@ -1,5 +1,5 @@
{{ define "main" }}
<article class="content">
<main class="main--single content">
<header class="page-header">
{{ partial "page_header.html" (dict "page" .) }}
</header>
@ -10,5 +10,5 @@
{{ partial "page/footer.html" . }}
{{ partial "page/prev_next_navigation.html" . }}
</footer>
</article>
</main>
{{ end }}