{% extends "base.html" %} {% block content %}
{% if not initials or initials | length == 0 %}

{{ t(key="public.glossaryTitle") }}

{{ t(key="public.noResults") }}

{% else %} {% for a in initials %}
  • {{ a }}
  • {% endfor %}
    {% include "glossary-words.html" %} {% endif %}
    {% endblock %}