mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-27 06:23:41 +00:00
23 lines
619 B
HTML
23 lines
619 B
HTML
{% extends "blog/base_blog.html" %}
|
|
|
|
|
|
{% block title %}Post archive for {{ month|date:"F Y" }}{% endblock %}
|
|
{% block body_class %}{{ block.super }} post_archive_month{% endblock %}
|
|
|
|
|
|
{% block main-content_title %}
|
|
<h2>Post archive for {{ month|date:"F Y" }}</h2>
|
|
{% endblock %}
|
|
|
|
|
|
{% block main-content %}
|
|
<div class="post_list">
|
|
{% for post in object_list %}
|
|
<div>
|
|
<h3 class="title"><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h3>
|
|
<p class="date">{{ post.publish|date:"Y F d" }}</p>
|
|
<p class="tease">{{ post.tease }}</p>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %} |