dlibrary/dlibrary/templates/work.html

51 lines
1.7 KiB
HTML

{% extends 'base.html' %}
{% block body %}
{% from 'utils.html' import urlcat, root, index, card with context %}
<h1 id="title"><a href="{{ root() }}/{{ index() }}">DL</a> &gt; {{ title }}</h1>
<div class="work-container">
<div class="work-preview">
<a href="view/{{ index() }}">
<img src="{{ root() }}/{{ work['thumbnail_path'] }}">
<div class="start-link">Start Reading</div>
</a>
</div>
<div class="work-info">
<table>
{% if work['circle'] %}
<tr>
<th>Circle</th>
<td><a class="work-info-link" href="{{ root() }}/circles/{{ urlcat(work['circle']) }}/{{ index() }}">{{ work['circle'] }}</a></td>
</tr>
{% endif %}
{% if work['authors'] %}
<tr>
<th>Authors</th>
<td>{% for author in work['authors'] %}<a class="work-info-link" href="{{ root() }}/authors/{{ urlcat(author) }}/{{ index() }}">{{ author }}</a> {% endfor %}</td>
</tr>
{% endif %}
{% if work['tags'] %}
<tr>
<th>Tags</th>
<td>{% for tag in work['tags'] %}<a class="work-info-link" href="{{ root() }}/tags/{{ urlcat(tag) }}/{{ index() }}">{{ tag }}</a> {% endfor %}</td>
</tr>
{% endif %}
{% if work['series'] %}
<tr>
<th>Series</th>
<td><a class="work-info-link" href="{{ root() }}/series/{{ urlcat(work['series']) }}/{{ index() }}">{{ work['series'] }}</a></td>
</tr>
{% endif %}
</table>
{% if work['description'] %}
{{ work['description'] }}
{% endif %}
</div>
</div>
<h3 id="suggested-subheader">Suggested works</h3>
<div id="suggested-works" class="card-listing">
{% for sugg in suggested %}
{{ card(sugg) }}
{% endfor %}
</div>
{% endblock %}