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

{{ post.title }}

{{ post.text }}
{%- assign cat_count = post.category_ids | size -%} {% if cat_count > 0 -%}

Categorized   {% for cat_id in post.category_ids -%} {% assign cat = categories | where: "Id", cat_id | first %} {{ cat.name }}     {%- endfor %}

{%- endif %} {%- assign tag_count = post.tags | size -%} {% if tag_count > 0 -%}

Tagged   {% for tag in post.tags %}     {%- endfor %}

{%- endif %}