There is not much value to be gotten out of creating Jinja blocks and appending them to a list when nothing particularly interesting is done with the list. With changes to move more towards semantic HTML, as well as more ease of access to data in the template engine in the new code, it is preferable to leave block division to the page template by making it a property of the <section> tag. This also allows creating blocks in Jinja iterators, which is not possible to do cleanly in the idiom being replaced here.
25 lines
583 B
Django/Jinja
25 lines
583 B
Django/Jinja
{% extends "lexicon.jinja" %}
|
|
{% set current_page = "contents" %}
|
|
{% block title %}Index | {{ lexicon_title }}{% endblock %}
|
|
|
|
{% block main %}
|
|
<section>
|
|
{% for message in get_flashed_messages() %}
|
|
<span style="color:#ff0000">{{ message }}</span><br>
|
|
{% endfor %}
|
|
|
|
{% for index in indexed %}
|
|
<b>{{ index }}</b>
|
|
{% if indexed[index] %}
|
|
<ul>
|
|
{% for article in indexed[index] %}
|
|
<li><a href="{{ article.title|articlelink }}" class="{{ 'phantom' if not article.character else '' }}">
|
|
{{ article.title }}
|
|
</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</section>
|
|
{% endblock %}
|