{% extends "base.html" %} {% block title %}{{ file }} · {{ name }} · The Booth{% endblock %} {% block html_attrs %} data-booth="{{ name }}"{% endblock %} {% block content %}
✕ {{ file }} ⬇
{# Same record, same reason as the image viewer: the sidecar that says what this doc IS travels with it to full-page view. #} {% if caption %}
{{ caption }}
{% endif %} {% if marks %}
{% for m in marks if m.shape == 'note' %}
{{ m.text }}
{% endfor %}
{% endif %} {% if is_html %}
{{ body|safe }}
{% else %}
{{ body }}
{% endif %}
{% endblock %}