Skip to content

Commit 2c3cb23

Browse files
authored
Fix: remove limit on blog listing (#251)
2 parents bd3d26a + 5d6d1ba commit 2c3cb23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/blog.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ <h1 class="mb-2">Our blog</h1>
1313
</div>
1414
<div class="col-md-6 offset-md-3">
1515
<!-- Home Post List -->
16-
{% for post in site.posts limit : 4 %}
16+
{% for post in site.posts %}
1717
<article class="post-preview">
1818
<a class="h3 post-title text-white text-decoration-underline d-inline-block mb-2" href="{{ post.url | prepend: site.baseurl | replace: '//', '/' }}">
1919
{{ post.title }}

0 commit comments

Comments
 (0)