Skip to content

Commit

Permalink
fix(blog): remove limit on blog listing
Browse files Browse the repository at this point in the history
  • Loading branch information
thekaveman authored Oct 31, 2024
1 parent bd3d26a commit 5d6d1ba
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 5d6d1ba

Please sign in to comment.