{% macro render_blog_post(post, from_index=false) %} {% if post.author %} {% set author = site.get('authors/' + post.author) %} {% if not author %} {% set author = post.author %} {% endif %} {% else %} {% set author = '' %} {% endif %}
{% if from_index %}
{% else %}
{% endif %}
{% if author.image %}
{{ author.name | striptags | striptags }} photo
{% endif %}

{% if author.name %} {{ author.name }}
{% elif author %} {{ author }}
{% endif %} {% if post.pub_date %} {{ post.pub_date.strftime('%Y-%m-%d') }} {% endif %}

{% if from_index %} {% else %}

{{ post.title }}

{{ post.body }} {% endif %}
{% if from_index %} {% if post.summary %}

{{ post.summary }}

{% endif %}

Read more...

{% endif %}
{% endmacro %}