summaryrefslogtreecommitdiff
path: root/_includes/postmeta.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 /_includes/postmeta.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 '_includes/postmeta.html')
-rw-r--r--_includes/postmeta.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/_includes/postmeta.html b/_includes/postmeta.html
index 7308a07..45241e1 100644
--- a/_includes/postmeta.html
+++ b/_includes/postmeta.html
@@ -1,3 +1,4 @@
+{% assign node=include.node %}
<p>
<small>
Posted by
@@ -7,8 +8,7 @@
{{ node.author }}
{% endif %}
- {% assign ordinalize=node.date | date: "%-d" %}
- on {{ node.date | date: "%B %-d" }}<sup>{% include ordinal.html %}</sup>
+ on {{ node.date | date: "%B %-d" }}<sup>{% include ordinal.html ordinalize=node.date | date: "%-d" %}</sup>
{{ node.date | date: "%Y" }}
</small>
</p>