feat: use more semantic html for post body

This commit is contained in:
Youwen Wu 2024-05-25 13:48:31 -07:00
parent 5fa6605116
commit 3e9e398a9c
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -1,12 +1,9 @@
<main>
<article> <article>
<header> <header>
<h1 class="text-4xl"> <h1 class="text-4xl">
<a href=".$url$">$title$</a> <a href=".$url$">$title$</a>
</h1> </h1>
<p <p class="mb-1 mt-2 italic text-lg text-accent-light dark:text-accent-dark">
class="mb-1 mt-2 italic text-lg text-accent-light dark:text-accent-dark"
>
$desc$ $desc$
</p> </p>
<div class="mt-2">$date$</div> <div class="mt-2">$date$</div>
@ -14,6 +11,5 @@
$if(updated)$(last updated: $updated$)$endif$ $if(updated)$(last updated: $updated$)$endif$
</div> </div>
</header> </header>
<section class="post mt-6">$body$</section> <main class="post mt-4">$body$</main>
</article> </article>
</main>