{% if page.categories %}
{% capture categories %}
{% for category in page.categories %}
{{ category }}{% if forloop.last == false %},{% endif %}
{% endfor %}
{% endcapture %}
{% elsif page.category %}
{% capture categories %}
{{ page.category }}
{% endcapture %}
{% endif %}
{% assign date_format = site.date_format | default: "%d %b %Y" %}
{{ categories | append: " · " }}