{% extends "layout.html" %} {% from 'model/macros.html' import uri_field, lit_field, icon_tag with context %} {% set title ='Type: ' + value(type_meta, nsc['skos'].prefLabel) %} {% block body %} {{ lit_field(value(type_meta, nsc['skos'].scopeNote), 'Description') }} Resources of this Type {% for uid, label, icon in rsrcs %} {% if type_label.lower() == 'document' %} {{ icon_tag(uid, label) }} {% else %} {{ icon_tag(icon, label) }} {% endif %} {{ label | e }} {% endfor %} {% endblock %}