{% extends "base.html" %} {% if page_url != '/' %} {% set subtitle = subtitle|default('Blog') -%} {% endif %} {% if paginator %} {% set posts = paginator_page.entries -%} {% else %} {% set posts = posts|default(site.posts) -%} {% endif %} {% block content %} {% for post in posts %}

{{ post.title|striptags }}

{% include 'includes/post_meta.html' %} {% if post.summary %} {{ post.summary }}
Read more →
{% else %} {{ post.content }} {% endif %} {% if theme.disqus_display_comment_count and theme.disqus_shortname %} Leave a comment {% endif %} {% if not loop.last %}
{% endif %}
{% endfor %} {% if paginator %} {% endif %} {% include 'includes/disqus_comment_count.html' %} {% endblock %}