{% extends 'superbase.html' %} {% block title %}{{ issue.title }} (#{{ issue.number }}){% endblock %} {% block body %}
{{ issue.formatted_content|safe }}
{% for article in issue.articles.all %}

{{ article.title }}
by {% for author in article.authors.all %} {% if author.bio %} {{ author.name }}{% else %}{{ author.name }}{% endif %}{% if not forloop.last %}, {% endif %} {% empty %} anonymous {% endfor %} / {{ article.category }} / {{ article.date|date:"F j, Y" }}

{{ article.subtitle }}


{{ article.formatted_content|safe }}
{% with num_authors=article.authors.count %} {% if num_authors %}
{% for author in article.authors.all %} {% include 'author_bio.html' with author=author only %} {% endfor %} {% endif %} {% endwith %}
{% endfor %}
{% endblock %}