{% extends 'base.html' %} {% block body %} {% from 'utils.html' import urlcat, root, index, card with context %}

DL > {{ title }}

{% if work['circle'] %} {% endif %} {% if work['authors'] %} {% endif %} {% if work['tags'] %} {% endif %} {% if work['series'] %} {% endif %}
Circle {{ work['circle'] }}
Authors {% for author in work['authors'] %}{{ author }} {% endfor %}
Tags {% for tag in work['tags'] %}{{ tag }} {% endfor %}
Series {{ work['series'] }}
Pages {{ work['images'] | length }}
{% if work['description'] %} {{ work['description'] }} {% endif %}

Suggested works

{% for sugg in suggested %} {{ card(sugg) }} {% endfor %}
{% endblock %}