statical 0.2.0

A calendar aggregator and generator to make maintaining calendars on static websites easier.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "page.html" %}

{% block title %}Event View{% endblock title %}

{% block content %}
<div id="statical-calendar" class="calendar">
  <h1>Event {{ view_date }}</h1>
  {% include "pagination_with_views.html" %}
  <div class="event">
    <p class="header">
      <span class="date">{{ month_name }} {{ day }}, {{ year }}</span>
    </p>
    {% include "event_include.html" %}
  </div>
  {% include "pagination.html" %}
</div>
{% endblock content %}