{% for post in posts %}
{{ post.title|capfirst }}
{% include 'blog/post_info.html' %}
{% empty %}There are no posts
{% endfor %}{% extends "blog/base.html" %} {% block title %} Blogg - {{ block.super }} {% endblock %} {% block content %}
{% include 'blog/post_info.html' %}
{% empty %}There are no posts
{% endfor %}