blob: 45241e12bc08f606169c9ff9ab726a5dac5c0b63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% assign node=include.node %}
<p>
<small>
Posted by
{% if node.email %}
<a href="mailto:{{ node.email }}">{{ node.author }}</a>
{% else %}
{{ node.author }}
{% endif %}
on {{ node.date | date: "%B %-d" }}<sup>{% include ordinal.html ordinalize=node.date | date: "%-d" %}</sup>
{{ node.date | date: "%Y" }}
</small>
</p>
|