summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2017-09-09 14:18:51 -0400
committerBen Burwell <ben@benburwell.com>2017-09-09 14:18:51 -0400
commit059a206c3a6a9024ac7abfb1cc5e815dedbfbf4d (patch)
treeb484b3d7eec868e4660676fbb876fb1bea1d0874 /_layouts
parente0e1ceb1de5a8f41e35127a37eaed46474ad4b25 (diff)
Fix liquid syntax
This was working previously, but is giving a warning.
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/post.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 7ac7a25..1449d39 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -22,7 +22,7 @@ layout: blog
<p>
Read more:<br>
- {% for related in site.related_posts | limit: 3 %}
+ {% for related in site.related_posts limit:3 %}
<a href="{{ related.url }}">{{ related.title }}</a><br>
{% endfor %}
</p>