phantasma/app/templates/texts.html

13 lines
315 B
HTML
Raw Normal View History

2021-10-10 15:06:43 +00:00
{% extends "base.html" %}
{% block body_class%}animated animated-text{% endblock %}
2021-10-10 15:06:43 +00:00
{% block main %}
<div class="texts">
{% for text in texts %}
<div class="text">
2021-10-11 12:55:45 +00:00
<h1><a href="{{ text.get_absolute_url }}">{{ text.title | safe }}</a></h1>
<h2>{{ text.byline|safe }}</h2>
2021-10-10 15:06:43 +00:00
</div>
{% endfor %}
{% endblock %}