{% extends "base.html" %} {% block content %}
{% for post in posts %}

{% if post.link %} → {{ post.title }} {% else %} {{ post.title }} {% endif %}

{{ post.content }}

{% include "tags.html" %}
{% endfor %}
{% if total_pages > 1 %} {% endif %} {% endblock %} {% block title %} {% if page != total_pages %} Page {{ page }} - {% endif %} {% endblock %}