Skip to content

Commit

Permalink
index.html: Fix liquid syntax
Browse files Browse the repository at this point in the history
Upgrading from liquid 2.6.1 to 3.0.6 the error got evident

Signed-off-by: Daiane Angolini <angolini@gmail.com>
  • Loading branch information
angolini authored and Daiane Angolini committed Sep 11, 2016
1 parent 81ee641 commit cc016d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -28,7 +28,7 @@ <h1 class="header author-header" itemprop="headline">{{ site.title }}</h1>
<h2>Latest Articles</h2>

<ul>
{% for post in site.posts | limit: site.post_limit %}
{% for post in site.posts limit: site.post_limit %}

<li>
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
Expand Down

0 comments on commit cc016d3

Please sign in to comment.