statical 0.2.0

A calendar aggregator and generator to make maintaining calendars on static websites easier.
Documentation
{% extends "page.html" %}

{% block title %}Week View{% endblock title %}

{% block content %}
<div id="statical-calendar" class="calendar">
  <h1>Events for week {{ iso_week }} of {{ month_name }} {{ year }}</h1>
  {% include "pagination_with_views.html" %}
  <div class="week">
    {% for day in week_dates %}
    <div class="day {% if day.month | int == month | int %}current-month{% else %}other-month{% endif %} {% if day.is_weekend %}weekend{% else %}weekday{% endif %}">
      <p class="header">
        <span class="wday">{{ day.wday }}</span>
        <span class="date">
          {% if week_switches_months -%}
            {%- if loop.first or day.day == 1 -%}
              <span class="month-name">{{ day.month_name }}</span>
            {%- endif -%}
          {%- endif %}
          <span class="day-number">{{ day.day }}</span>
        </span>
      </p>
      <div class="events">
        {% for event in day.events %}
          {% include "event_include.html" %}
        {% endfor %}
      </div>
    </div>
    {% endfor %}
  </div>
  {% include "pagination.html" %}
</div>
{% endblock content %}