{% if post.title %}

{{ post.title }}

{% endif %} {% if post.tags %}

Tags: {% for tag in post.tags %}{{ tag }}{% if not loop.last %}, {% endif %}{% endfor %}

{% endif %} {% set summary_text = post.abstract | default(post.excerpt) %} {% if summary_text %}

{{ summary_text }}

{% endif %}

Continue reading →