{% extends "templates/base.tpl" %} {% block title %}Library{% endblock %} {% block body %}
Filters

Author:


License:


{% for item in items["@graph"]|sort(attribute="library:title") %}

{{ item['library:title'] }}
Authors: {% for author in item["library:author"]|sort() %} {{ author }} {% endfor%}
License: {% for license in item["library:license"]|sort(attribute="license:id") %} {{ license['license:id'] }} {% endfor%}



{% endfor %}
{% endblock %}