{% extends 'base.html' %} {% load blog_tags %} {% load compress %} {% load static %} {% block title %}Blog{% endblock title %} {% block bloghead %}{% insert_blog_feeds %}{% endblock bloghead %} {% block extra_styles %} {% compress css %} {% endcompress %} {% endblock extra_styles %} {% block extra_scripts %} {% compress js %} {% endcompress %} {% endblock extra_scripts %} {% block navbar %}{% endblock navbar %} {% block pagetitle %}Blog{% endblock pagetitle %} {% block content %}
{% block blog_content %}

Articles in {{ month|date:"F Y" }}

{% with object_list as articles %} {% include 'blog/article_list.html' %} {% endwith %} {% endblock blog_content %}
{% block subscribe_link %} Subscribe to Our Blog {% endblock subscribe_link %}
{% blog_search_form %}

Article Archive

{% if year %} {% with year|date:"Y" as blog_year %} {% blog_nav_tree blog_year %} {% endwith %} {% else %} {% if month %} {% with month|date:"Y" as blog_year %} {% with month|date:"m" as blog_month %} {% blog_nav_tree blog_year blog_month %} {% endwith %} {% endwith %} {% else %} {% if object %} {% with object.pub_date|date:"Y" as blog_year %} {% with object.pub_date|date:"m" as blog_month %} {% blog_nav_tree blog_year blog_month object %} {% endwith %} {% endwith %} {% else %} {% blog_nav_tree %} {% endif %} {% endif %} {% endif %}

Tag Cloud

{% tag_cloud %}

Categories

{% get_blog_category_list %}
{% endblock content %}