{% if is_category or is_tag %}

{{ page_title }}

{%- if subtitle %}

{{ subtitle }}

{%- endif %} {% endif %} {%- for post in model.posts %}

{{ 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 -%} {% unless forloop.last %}, {% endunless %} {%- endfor %}
{%- endif %} {%- assign tag_count = post.tags | size -%} {%- if tag_count > 0 %} Tagged {% for tag in post.tags -%} {% unless forloop.last %}, {% endunless %} {%- endfor %}
{%- endif %} {%- if logged_on %}Edit Post{% endif %}
{%- endfor %}