phantasma/app/templates/texts.html
2021-10-11 13:55:45 +01:00

11 lines
257 B
HTML

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