{% if package.homepage %} {{ project_title }}{% if package.version %} - v{{ package.version }}{% endif %} {% else %} {{ project_title }}{% if package.version %} - {{ package.version }}{% endif %} {% endif %}

{# No item documented #} {% if data.length == 0 %}

No documented item.

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

{{ groups[group_name] }}

{# Loop over the types #} {% for type, items in group %} {% if loop.first %}
{% endif %} {# If items to be displayed in type #} {% if items.length > 0 %}

{{ type | pluralize }}

{# Loop over the items #} {% for item in items %} {% if loop.first %}
    {% endif %}
  • {{ item.context.name | unescape }} {% if item.access[0] == "private" %}private{% endif %} {% if item.alias %}alias{% endif %}
  • {% if loop.last %}
{% endif %} {% endfor %} {% endif %} {% if loop.last %}
{% endif %} {% endfor %} {% endfor %} {% endif %}