{% extends "base.html" %} {% block title %}Publish{% endblock %} {% block content %}

Publish Issue

{{ week_start.strftime('%b %d') }} – {{ week_end.strftime('%b %d, %Y') }} · {{ articles|length }} articles

{% if articles %}
{% for article in articles %} {% endfor %}
Date Title Author
{{ article.pub_date.strftime('%b %d') }} {{ article.title }} {{ article.author }}
Cover
{% else %}

No articles found for this week. Try fetching articles first from the Dashboard.

{% endif %} {% endblock %} {% block scripts %} {% endblock %}