{% extends "base.html" %} {% if comic %} {% block meta_description %}{{ comic.alt_text }}{% if comic.author_note %} - {{ comic.author_note }}{% endif %}{% endblock %} {% block og_image %}{% if cdn_url %}{{ cdn_url }}/static/images/thumbs/{{ comic.filename }}{% else %}{{ site_url }}/static/images/thumbs/{{ comic.filename }}{% endif %}{% endblock %} {% endif %} {% block content %}

{{ comic.title if comic.title else '#' ~ comic.number }}

{{ comic.date }}

{% if comic.is_multi_image %} {# Multi-image layout (webtoon style) - no click-through on individual images #} {% for i in range(comic.filenames|length) %} {{ comic.alt_texts[i] }} {% endfor %} {% else %} {% if comic.mobile_filename %} {{ comic.title if comic.title else '#' ~ comic.number }} {% else %} {{ comic.title if comic.title else '#' ~ comic.number }} {% endif %} {% endif %}
{% if embed_enabled or permalink_enabled %}
{% if permalink_enabled %} {% endif %} {% if embed_enabled %} {% endif %}
{% endif %} {% if comic.author_note %}

Author Note

{% if comic.author_note_is_html == True %}
{{ comic.author_note|safe }}
{% else %}

{{ comic.author_note }}

{% endif %}
{% endif %}
{% endblock %}