ID: f7299d99ce3309b261880788506fcc34c6faa5ed
38 lines
—
962B —
View raw
| {% extends "base.html" %}
{% block title %}{{ data['library:title'] }}{% endblock %}
{% block body %}
<div class="library_item">
<div class="header">
<a href="/library">DOKK Library</a>
</div>
<object type="application/pdf" data="https://blob.dokk.org/pdf/{{ item_id }}.pdf"></object>
<div class="info">
<h1>{{ data["library:title"] }}</h1>
<p>
<b>Authors</b>
{% for author in data["library:author"]|sort() %}
{{ author }}
{% endfor%}
</p>
<p>
<b>License</b>
{% for license in data["license:licensed_under"]|sort(attribute="license:id") %}
<a href="{{ url('license', id=license['license:id']) }}">{{ license['license:id'] }}</a>
{% endfor%}
</p>
</div>
<details open>
<summary>Plaintext</summary>
<pre>{{ plaintext }}</pre>
</details>
</div>
{% endblock %}
|