1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-03-01 10:53:06 +00:00
scrapy/sites/scrapy.org/templates/blog/entry_archive_day.html

17 lines
378 B
HTML
Raw Normal View History

{% extends "base_weblog.html" %}
{% block title %}Weblog | {{ day|date:"F j" }}{% endblock %}
{% block main-content %}
<h2>{{ day|date:"F j" }} 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 %}