1 2 3 4 5 6 7 8 9 10 11 12
{% extends "site.html" %} {% block title %}Glossary | {{ title }}{% endblock %} {% block page_inner %} {% for item in glossary %} <section class="normal glossary" id="{{ item.name }}"> <h2>{{ item.name }}</h2> <p>{{ item.description }}</p> </section> {% endfor %} {% endblock %}