12 lines
315 B
HTML
12 lines
315 B
HTML
{% extends "base.html" %}
|
|
{% block body_class%}animated animated-text{% endblock %}
|
|
{% 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 %}
|