{% if post.authors %}
{% for a in post.authors %}
{% if a.url %}{{ a.name }}{% else %}{{a.name}}{% endif %}{% if forloop.last == false %},{% endif %}
{% endfor %}
{%endif%}
{% if post.summary %}
{{ post.summary }}
{% else if post.excerpt %}
{{ post.excerpt }}
{% endif %}
{% if post.image %}
{% endif %}
{% if post.categories.size > 0 %}
Categories:
{% for c in post.categories %}
{{ c }}{% if forloop.last == false %},{% endif %}
{% endfor %}
{% endif %}