{% extends '../layouts/base.html.njk' %} {% block content %} {# No item documented #} {% if data.length == 0 %}

Seems like nothing has been documented yet!

{# Some items documented #} {% else %} {# Loop over the groups #} {% for group_name, group in data.byGroupAndType %}

{{ groups[group_name] }}

{% if group_name in groupDescriptions %}
{{ groupDescriptions[group_name] | safe }}
{% endif %} {# Loop over the types #} {% for type, items in group %} {# If items to be displayed in type #} {% if items.length > 0 %}

{{ type | pluralize }}

{# Loop over the items #} {% for item in items %} {% include "../includes/partials/item.html.njk" %} {% endfor %}
{% endif %} {% endfor %}
{% endfor %} {% endif %} {% endblock %} {# Include sidebar #} {% block sidebar %} {% include "../includes/partials/sidebar.html.njk" %} {% endblock %}