theme: don't plainify post summaries

I *believe* this will just mean HTML inside summaries is rendered rather
than being stripped, but when it strips HTML it doesn't render HTML
entities like `“`, which is what this commit is fixing.
This commit is contained in:
Qyriad 2024-07-10 18:09:29 -06:00
parent 8568afd19c
commit 10e479016a

View file

@ -22,7 +22,7 @@
</div>
<div class="card-body">
<h5 class="card-title fw-semibold">{{ .Title }}</h5>
<p class="card-text text-black-61">{{ .Summary | plainify }}</p>
<p class="card-text text-black-61">{{ .Summary }}</p>
</div>
</a>
</div>