1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-03-01 11:07:18 +00:00
scrapy/sites/scrapy.org/templates/blog/entry_archive_month.html

17 lines
378 B
HTML
Raw Normal View History

{% extends "base_weblog.html" %}
{% block title %}Weblog | {{ month|date:"F" }}{% endblock %}
{% block main-content %}
<h2>{{ month|date:"F" }} archive</h2>
{% for object in object_list %}
<h2><a href="{{ object.get_absolute_url }}">{{ object.headline }}</a></h2>
<p class="small date">{{ object.pub_date|date:"F j, Y" }}</p>
{{ object.body }}
{% endfor %}
{% endblock %}