{% extends "_base.html" %} {% block title %}{{ super() }} {{ data['title'] }} {% endblock %} {% block desc %}{{ data.get('description','') | truncate(250) }}{% endblock %} {% block tags %}{{ data.get('keywords',[]) | join(',') }}{% endblock %} {% block crumbs %}{{ super() }} / {% trans %}Collections{% endtrans %} / {{ data['title'] | truncate( 25 ) }} {% endblock %} {% block extrahead %} {% endblock %} {% block body %}

{{ data['title'] }}

{{ data['description'] }}

{% for kw in data['keywords'] %} {{ kw }} {% endfor %}

{% if data['itemType'] == 'feature' or data['itemType'] == 'record' %}

{% trans %}Browse{% endtrans %}

{% trans %}Queryables{% endtrans %}

{% for provider in config['resources'][data['id']]['providers'] %} {% if 'tile' in provider['type'] %}

{% trans %}Tiles{% endtrans %}

{% endif %} {% endfor %} {% endif %}

{% trans %}Links{% endtrans %}

{% endblock %} {% block extrafoot %} {% endblock %}