{{ post.title }}
{% assign need_br = true %}
{% capture my_categories %}
{% for category in post.categories %}
{{ category }}
{% if forloop.last == false %}
{% if forloop.index >= 3 %}
{% assign need_br = false %}
{% endif %}
,
{% endif %}
{% endfor %}
{% endcapture %}
{{ my_categories | strip_newlines | replace: ',', ' • ' }}
{% if need_br %}
{% else %}
|
{% endif %}
{{ post.date | date: "%b %-d, %Y" }}