coriplus/templates/explore.html

11 lines
243 B
HTML
Raw Normal View History

2019-05-22 18:25:08 +02:00
{% extends "base.html" %}
{% block body %}
<h2>Explore</h2>
<ul>
{% for message in message_list %}
<li>{% include "includes/message.html" %}</li>
{% endfor %}
</ul>
{% include "includes/pagination.html" %}
{% endblock %}