{% extends "base.html" %} {% block title %}Library{% endblock %} {% block body %}
Filters

Author:


Journal:


License:


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

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



{% endfor %}
{% endblock %}