{% extends "templates/base.tpl" %} {% block title %}Library{% endblock %} {% block body %}
The library is also available via OPDS. Add this link to your OPDS client: https://dokk.org/library/opds.xml


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 %}