mirror of
https://github.com/scrapy/scrapy.git
synced 2025-03-01 10:53:06 +00:00
17 lines
378 B
HTML
17 lines
378 B
HTML
|
{% 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 %}
|