{% extends "_base.html" %} {% block title %}{{ super() }} {{ data['title'] }} {% endblock %} {% block crumbs %}{{ super() }} / {% trans %}Collections{% endtrans %} {% for link in data['links'] %} {% if link.rel == 'collection' %} / {{ link['title'] | truncate( 25 ) }} {% set col_title = link['title'] %} {% endif %} {% endfor %} / {% trans query_type=data.query_type %}{{ query_type }}{% endtrans %} {% endblock %} {% block extrahead %} {% if data.type == "Coverage" or data.type == "CoverageCollection" %} {% elif data.type == "Feature" or data.type == "FeatureCollection" %} {% endif %} {% endblock %} {% block body %}
{% if data.features or data.coverages or data.ranges or data.references %}
{% else %}

{% trans %}No items{% endtrans %}

{% endif %}
{% endblock %} {% block extrafoot %} {% if data %} {% endif %} {% endblock %}