{% load static i18n %}
{% block content %}
{% block main %} {% endblock %}
{% trans "Subscribe" %}
{% if page.itunes_url %}
Itunes
{% endif %} {% if page.google_url %}
Google Play
{% endif %}
{% trans "Direct" %}
{% if page.blubrry_url %}
Blubbry
{% endif %}
{% trans "Archive" %}
{% regroup archives by date|date:"Y" as year_list %} {% for year in year_list %}
{{ year.grouper }}
{% regroup year.list by date|date:"M" as month_list %} {% for month in month_list reversed %}
{{ month.grouper }}
{% endfor %}
{% endfor %}
{% endblock %}