{% extends "base.html" %} {% block meta_description %}{{ comic.alt_text }}{% if comic.author_note %} - {{ comic.author_note }}{% endif %}{% endblock %} {% block og_image %}{{ request.url_root }}static/images/thumbs/{{ comic.filename }}{% endblock %} {% block content %}
{% if not comic.plain %}

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

{{ comic.date }}

{% endif %}
{% if comic.number < total_comics %} {% if comic.mobile_filename %} {{ comic.title if comic.title else '#' ~ comic.number }} {% else %} {{ comic.title if comic.title else '#' ~ comic.number }} {% endif %} {% 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 comic.author_note %}

Author Note

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

{{ comic.author_note }}

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