gergelypolonkai-web-django/blog/templates/blog/listing.html

12 lines
205 B
HTML

{% extends "front_base.html" %}
{% block content %}
{% if posts %}
{% for post in posts %}
{{ post.title }}
{% endfor %}
{% else %}
<p>No posts are returned for your query.</p>
{% endif %}
{% endblock %}