chore: clean up extra space in documents

This commit is contained in:
Cory Dransfeldt 2024-08-05 11:10:55 -07:00
parent 1bf0e7c3bb
commit 4330f60f32
No known key found for this signature in database
25 changed files with 123 additions and 124 deletions

View file

@ -1,15 +1,15 @@
{% if popularPosts.size > 0 %}
{%- if popularPosts.size > 0 -%}
<h3 class="flex-centered">
{% tablericon "flame" "Popular" %}
Popular posts
</h3>
<ul class="link-list">
{% for post in popularPosts limit: 5 %}
{%- for post in popularPosts limit: 5 -%}
<li>
<a class="no-underline" href="{{ post.slug }}" title="{{ post.title | escape}}">
{{ post.title }}
</a>
</li>
{% endfor %}
{%- endfor -%}
</ul>
{% endif %}
{%- endif -%}