funky/_includes/post-meta.html
Michael Lynch 863954c90e Disabling execute permission on all files
Many files in the repo have the UNIX executable permission bit set, which indicates to the OS that these are executable binaries. None of these files are executable, so they should not have the executable permission bit set.
2019-03-03 16:07:41 -05:00

16 lines
589 B
HTML

{% 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: "&nbsp;&middot;&nbsp;" }}<time datetime="{{ page.date | date_to_xmlschema }}" class="time">{{ page.date | date_to_string }}</time>
</small>