{{ post.published_on | date: "dddd, MMMM d, yyyy" }}
{{ post.title }}
{{ post.text }}
{%- assign cat_count = post.category_ids | size -%}
{%- if cat_count > 0 %}
Categorized under
{% for cat_id in post.category_ids -%}
{%- assign cat = categories | where: "Id", cat_id | first -%}
{{ cat.name }}{% unless forloop.last %}, {% endunless %}
{%- endfor %}
{%- endif %} {%- assign tag_count = post.tags | size -%} {%- if tag_count > 0 %} Tagged {% for tag in post.tags -%} {{ tag }}{% unless forloop.last %}, {% endunless %} {%- endfor %}
{%- endif %} {%- if logged_on %}Edit Post{% endif %}