16 lines
589 B
HTML
Executable File
16 lines
589 B
HTML
Executable File
{% if page.categories %}
|
|
{% capture categories %}
|
|
{% for category in page.categories %}
|
|
<span class="label label--category">{{ category }}</span>{% if forloop.last == false %},{% endif %}
|
|
{% endfor %}
|
|
{% endcapture %}
|
|
{% elsif page.category %}
|
|
{% capture categories %}
|
|
<span class="label label--category">{{ page.category }}</span>
|
|
{% endcapture %}
|
|
{% endif %}
|
|
|
|
<small class="small post-meta">
|
|
{{ categories | append: " · " }}<time datetime="{{ page.date | date_to_xmlschema }}" class="time">{{ page.date | date_to_string }}</time>
|
|
</small>
|