njpma/app/templates/texts.html
2021-10-10 16:06:43 +01:00

10 lines
207 B
HTML

{% extends "base.html" %}
{% block main %}
<div class="texts">
{% for text in texts %}
<div class="text">
<a href="{{ text.get_absolute_url }}">{{ text.title }}</a>
</div>
{% endfor %}
{% endblock %}