funky/_includes/post-meta.html

16 lines
589 B
HTML
Raw Normal View History

2018-01-01 20:52:03 +00:00
{% if page.categories %}
{% capture categories %}
{% for category in page.categories %}
2018-01-01 21:52:29 +00:00
<span class="label label--category">{{ category }}</span>{% if forloop.last == false %},{% endif %}
2018-01-01 20:52:03 +00:00
{% endfor %}
{% endcapture %}
{% elsif page.category %}
{% capture categories %}
2018-01-01 21:52:29 +00:00
<span class="label label--category">{{ page.category }}</span>
2018-01-01 20:52:03 +00:00
{% endcapture %}
{% endif %}
<small class="small post-meta">
2018-01-01 20:52:03 +00:00
{{ categories | append: "&nbsp;&middot;&nbsp;" }}<time datetime="{{ page.date | date_to_xmlschema }}" class="time">{{ page.date | date_to_string }}</time>
</small>