{% extends "posts.html" %} {% load i18n %} {% load sekizai_tags %} {% load goscale_tags %} {% block posts_content %} {% if posts %}
{% if title %}
{{ title }}
{% endif %}
{% for post in posts %}
{% if external_links %} {{ post.title }} {% else %} {{ post.title }} {% endif %}
{% if show_date %} {% endif %}
{{ post.summary }}
{% endfor %}
{% endif %} {% endblock %}