chore: cut widget over

This commit is contained in:
Cory Dransfeldt 2023-08-22 14:18:10 -07:00
parent 96a604669b
commit 14e1945ba4
No known key found for this signature in database
4 changed files with 9 additions and 9 deletions

View file

@ -5,7 +5,7 @@
<div class="ml-1">Popular posts</div>
</h2>
<ul class="list-inside list-disc pl-5 md:pl-10">
{% for post in posts %}
{% for post in posts limit: 5 %}
<li class="mt-1.5 mb-2">
<a href="{{post.url}}" title="{{ post.data.title | escape}}">
{{ post.data.title }}
@ -13,4 +13,4 @@
</li>
{% endfor %}
</ul>
</div>
</div>