{% extends "base.html" %} {% block title %}{{ blog.title }}{% endblock %} {% block relative %}./{% endblock %} {% block content %} {% for post in posts %}

{{ post.title }}

{% if not post.link == post.url %} {% endif %}
{{ post.content }}
{% endfor %}

Archives

    {% for page in pages %}
  1. {{ page.title }}
  2. {% endfor %}
{% endblock %}