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

{{ post.title|capfirst }}

{% empty %}

There are no posts

{% endfor %}
{% endblock %}