phantasma/app/templates/texts.html

26 lines
640 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">
<div class="assemblies">
<div class="col">
{% for text in en_texts %}
<div class="text en">
<h1><a href="{{ text.get_absolute_url }}">{{ text.title | safe }}</a></h1>
<h2>{{ text.byline|striptags }}</h2>
</div>
{% endfor %}
</div>
<div class="col">
{% for text in zh_texts %}
<div class="text zh">
<h1><a href="{{ text.get_absolute_url }}">{{ text.title | safe }}</a></h1>
<h2>{{ text.byline|striptags }}</h2>
</div>
{% endfor %}
</div>
2021-10-10 15:06:43 +00:00
</div>
</div>
2021-10-10 15:06:43 +00:00
{% endblock %}