{% for link in data['links'] %} {% if (link['rel']=="self" and link['type']=="text/html") %} {% endif %} {% endfor %} {% block extrahead %} {% endblock %}
Contact
{% block crumbs %} {% trans %}Home{% endtrans %} {% endblock %} {% set links_found = namespace(json=0, jsonld=0) %} {% for link in data['links'] %} {% if link['rel'] == 'alternate' and link['type'] and link['type'] in ['application/json', 'application/geo+json'] %} {% set links_found.json = 1 %} {% trans %}json{% endtrans %} {% elif link['rel'] == 'alternate' and link['type'] and link['type'] == 'application/ld+json' %} {% set links_found.jsonld = 1 %} {% trans %}jsonld{% endtrans %} {% endif %} {% endfor %} {% if links_found.json == 0 %} {% trans %}json{% endtrans %} {% endif %} {% if links_found.jsonld == 0 %} {% trans %}jsonld{% endtrans %} {% endif %}

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