{%- for comic_path in comic_paths %}
{%- endfor %}
{# Navigation Bar. Supports disabling the links when you're at the first or last page. #}
{# Post text and metadata like Title, Post Date, Storyline, Characters, and Tags #}
{{ page_title }}
Posted on: {{ _post_date }}
{# The storyline this page is in, with a link to the first page in that storyline #}
{%- if _storyline %}
{%- endif %}
{# List of characters in this comic, with a link to a web page that lists all comics with that character #}
{%- if _characters %}
Characters:
{%- for character in _characters %}
{# "if not loop.last" puts commas after every link except at the very end #}
{{ character }}{% if not loop.last %}, {% endif %}
{%- endfor %}
{%- endif %}
{# List of other tags on this comic, with a link to a web page that lists all comics with that tag #}
{%- if _tags %}
{%- endif %}
{# The post that goes with this comic #}
{{ post_html }}