mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-27 07:24:32 +00:00
17 lines
378 B
HTML
17 lines
378 B
HTML
{% 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 %}
|