{% extends "base.html" %} {%- set uglyurls = config.extra.uglyurls | default(value=false) -%} {%- if config.extra.offline %}{% set uglyurls = true %}{% endif %} {%- block seo %} {{- super() }} {%- set title = "Categories" %} {%- if config.title %} {%- set title_addition = title_separator ~ config.title %} {%- else %} {%- set title_addition = "" %} {%- endif %} {%- set description = config.description %} {{- macros_seo::seo(config=config, title=title, title_addition=title_addition, description=description, is_home=true) }} {%- endblock seo %} {%- block content %}

{{ terms | length }} {{ macros::translate(key="Categories", default="Categories", i18n=i18n) }}

{% for term in terms %} [{{ term.name }}]{{ term.pages | length }} {% endfor %}

{%- for term in terms %}

{{ term.name }}

{%- for page in term.pages %}

{{ page.title }} -

{%- endfor %} {%- endfor %}
{%- endblock content %}