{% extends 'blog/base.html' %}
{% block title %}Articles in {{ month|date:"F Y" }}{% endblock title %}
{% block pagetitle %}Articles in {{ month|date:"F Y" }}{% endblock pagetitle %}
{% block blog_content %}
{% with month|date:"F Y" as formatted_date %}
{% include 'blog/article_list.html' with articles=object_list article_list_title="Articles in "|add:formatted_date %}
{% endwith %}
{% endblock blog_content %}