summaryrefslogtreecommitdiff
path: root/_layouts/home.html
diff options
context:
space:
mode:
authorNicolas Kuttler <git@kuttler.eu>2015-02-12 17:24:03 +0100
committerNicolas Kuttler <git@kuttler.eu>2015-02-12 17:24:03 +0100
commitc59344a2ac4c3aa6e53f1d4299e1a29f0568f3a3 (patch)
treed41d54517cc7dc37c7fd3d003f8d6bfe69d320c2 /_layouts/home.html
parent8b7b806819af71d57b35505f05c54d8e216bc1d3 (diff)
downloadirssi.github.io-c59344a2ac4c3aa6e53f1d4299e1a29f0568f3a3.zip
Refactor includes
Includes can pass variables after all. The template language is beginning to feel clumsy.
Diffstat (limited to '_layouts/home.html')
-rw-r--r--_layouts/home.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/_layouts/home.html b/_layouts/home.html
index e0e2187..81451b6 100644
--- a/_layouts/home.html
+++ b/_layouts/home.html
@@ -6,8 +6,7 @@ layout: default
{% for post in paginator.posts %}
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
- {% assign node=post %}
- {% include postmeta.html %}
+ {% include postmeta.html node=post %}
{{ post.content | markdownify }}
{% endfor %}