{%- assign post = model.posts | first -%}

{{ post.title }}

Posted by {{ model.authors | value: post.author_id }} on {{ post.published_on | date: "dddd, MMMM d, yyyy" }} at {{ post.published_on | date: "h:mm tt" | downcase }}

{%- 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 %}
{{ post.text }}