fix: 🩹 remove superfluous class names

This commit is contained in:
Sebin Nyshkim 2024-10-18 22:57:13 +02:00
parent fef051e191
commit 527ede261b

View file

@ -14,10 +14,10 @@ pagination:
{% for post in blogposts %}
<article class="prose prose-slate mx-auto md:prose-lg lg:prose-xl dark:prose-invert prose-headings:font-normal prose-strong:text-inherit prose-li:marker:!text-inherit prose-th:font-bold prose-img:rounded-3xl">
<h1>{{ post.data.title }}</h1>
<aside class="not-prose space-y-4 text-base">
<div class="not-prose">
{%- from 'postmeta.macro.njk' import postmeta %}
{{ postmeta({ date: post.date, author: post.data.author, content: post.content}) }}
</aside>
</div>
{% if post.data.image and post.data.image.src != '' %}
<img src="{{ post.data.image.src }}" alt="{{ post.data.image.alt }}">