summaryrefslogtreecommitdiff
path: root/_includes/postmeta.html
blob: 3074fb9c0b95e97d62a314e57ab483af73a4907e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% assign node=include.node %}
<p>
    <small>
        Posted by
        {% if node.email %}
            <a href="mailto:{{ node.email }}">{{ node.author }}</a>
        {% else %}
            {{ node.author }}
        {% endif %}

		{% assign ordinalize = node.date | date: "%-d" %}
        on {{ node.date | date: "%B %-d" }}<sup>{% include ordinal.html ordinalize=ordinalize %}</sup>
        {{ node.date | date: "%Y" }}
    </small>
</p>