{% extends "_base.html" %} {% block title %}{{ super() }} {% trans %}TileMatrixSets{% endtrans %} {% endblock %} {% block crumbs %}{{ super() }} / {% trans %}TileMatrixSets{% endtrans %} {% endblock %} {% block body %} {% trans %}Tile matrix sets available in this service{% endtrans %} {% trans %}Title{% endtrans %} {% trans %}Description{% endtrans %} {% for tms in data['tileMatrixSets'] %} {% for link in tms['links'] %} {% if (link['rel']=="self" and link['type']=="text/html") %} {{tms.id}} {% endif %} {% endfor %} {{ tms.title }} {% endfor %} {% endblock %}