{% extends "base.html" %} {% block title %}Calendar - {{ site_title }}{% endblock %} {% block meta_tags %} {% from '_listing_meta_tags.html' import listing_meta_tags with context %} {{ listing_meta_tags("Calendar - " ~ site_title) }} {% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Calendar

{% if not calendar_years %}

No posts yet.

{% else %} {% for year_group in calendar_years %}

{% if year_group.year_url %} {{ year_group.year }} {% else %} {{ year_group.year }} {% endif %}

{% for cal_month in year_group.months %}

{% if cal_month.month_url %} {{ cal_month.month_name }} {% else %} {{ cal_month.month_name }} {% endif %}

{% if forward_calendar %} {% else %} {% endif %} {% for week in cal_month.weeks %} {% for day in week %} {% if day.date is none %} {% elif day.post_count > 0 %} {% set day_title = day.post_count ~ ' post' ~ ('' if day.post_count == 1 else 's') %} {{ day.date.day }} {% else %}
{{ day.date.day }}
{% endif %} {% endfor %} {% endfor %}
{% endfor %}
{% endfor %} {% endif %}
{% endblock %}