Skip to content

Commit

Permalink
Merge pull request #31 from Edirom/blogpost-limit-remove
Browse files Browse the repository at this point in the history
Removed the limit for blogposts shown
  • Loading branch information
roewenstrunk authored Mar 27, 2024
2 parents 40a557a + 8e3c506 commit f4d65e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<div class="row">
<div class="col-md-8">
{% for post in site.posts limit: 3 %}
{% for post in site.posts %}
<div class="card bg-light my-4">
{% if post.teaserImage %}
<img src="{{post.teaserImage}}" class="card-img-top" style="width: 100%; height:15vh; object-fit: cover;" alt="Teaser Bild für {{post.title}}">
Expand Down

0 comments on commit f4d65e3

Please sign in to comment.