2021-10-10 15:06:43 +00:00
|
|
|
{% extends "base.html" %}
|
2021-10-22 12:01:38 +00:00
|
|
|
{% 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 %}
|