{%- set ns = namespace(elements=[]) -%}
{%- for tag in post.tags -%}
{%- set element = '' ~ tag ~ '' -%}
{%- set ns.elements = ns.elements + [element] -%}
{%- endfor -%}
{{ ns.elements | join('•') }}
{{post.name}}
{{post.description}}
By
{%- for author in post.authors -%}
{%- if author is string -%}
{{author}}
{%- else -%}
{{author.name}}
{%- endif -%}
{%- if loop.length > 1 -%}
{%- if loop.revindex0 == 1 %} and {% elif not loop.last %}, {% endif -%}
{%- endif -%}
{%- endfor -%}
•{{post.date.strftime("%b %d") if post.date.year == now.year else post.date.strftime("%b %d, %Y")}}•{{post.readTime}} min read
{% if post.image is not none %}
{{post.image.html(site)}}
{%- endif -%}