-
-
{% assign category_name = include.post_categories[0] %}
{{ category_name }}
{% if include.post_tags.size > 0 %}
-
{% assign tag_names = include.post_tags %}
{% assign tag_array = "" | split: "/" %}
{% for tag_name in tag_names %}
{% capture link %}{{ tag_name }}{% endcapture %}
{% assign tag_array = tag_array | push: link %}
{% endfor %}
{{ tag_array | join: ', ' }}
{% endif %}