{{ title | markdown | safe }}
{{ content | safe }}
{%- for content in collections.pinned | reverse -%}
{%- endfor -%}
{%- set top = 3 -%}
{%- for content in collections.posts | reverse -%}
{%- if (loop.index <= top) and (top <= loop.length) -%}
{%- if content.data.coverImage -%}
{%- else -%}
{%- endif -%}
{%- endif -%}
{%- endfor -%}
{{ content.data.title }}
...read more in the blog