chore: widgets are blocks, not all blocks need to connect to the cms; bye bugs

This commit is contained in:
Cory Dransfeldt 2024-07-15 17:31:45 -07:00
parent 16eb58fe0f
commit 00fd39db89
No known key found for this signature in database
35 changed files with 77 additions and 48 deletions

View file

@ -1,15 +0,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 %}
<li>
<a class="no-underline" href="{{ post.slug }}" title="{{ post.title | escape}}">
{{ post.title }}
</a>
</li>
{% endfor %}
</ul>
{% endif %}