Skip to content

Commit

Permalink
Fix: remove limit on blog listing (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
thekaveman authored Oct 31, 2024
2 parents bd3d26a + 5d6d1ba commit 2c3cb23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h1 class="mb-2">Our blog</h1>
</div>
<div class="col-md-6 offset-md-3">
<!-- Home Post List -->
{% for post in site.posts limit : 4 %}
{% for post in site.posts %}
<article class="post-preview">
<a class="h3 post-title text-white text-decoration-underline d-inline-block mb-2" href="{{ post.url | prepend: site.baseurl | replace: '//', '/' }}">
{{ post.title }}
Expand Down

0 comments on commit 2c3cb23

Please sign in to comment.