{% extends "base.html" %} {% set posts = posts|default(site.posts) -%} {% if paginator %} {% set posts = paginator_page.entries -%} {% else %} {% set posts = posts|default(site.posts) -%} {% endif %} {% block content %}
{% for post in posts %}
  • {{ post.date.strftime('%B %d, %Y') }}
  • {% for tag in post.tags %}
  • {{ tag.name }}
  • {% endfor %}

{{ post.title|striptags }}

{% if post.summary %} {{ post.summary }} {% else %} {{ post.content }} {% endif %} {% if not loop.last %}
{% endif %}
{% endfor %} {% if paginator %}
{% endif %}
{% endblock %}