fix(*): corrects a number of html validation issues

This commit is contained in:
Cory Dransfeldt 2025-05-07 19:22:03 -07:00
parent 4cefdee788
commit a614abb09b
No known key found for this signature in database
14 changed files with 30 additions and 28 deletions

View file

@ -29,7 +29,10 @@ permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}
{% render "blocks/tags.liquid",
tags:post.tags
%}
<p>{{ post.description | markdown }}</p>
{% assign description = post.description | strip_newlines | strip %}
{% if description != '' %}
{{ description | markdown }}
{% endif %}
</article>
{% endfor %}
{% render "nav/paginator.liquid",