mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-27 11:44:37 +00:00
21 lines
504 B
HTML
21 lines
504 B
HTML
{% extends "blog/base_blog.html" %}
|
|
|
|
|
|
{% block title %}Post archive for {{ year }}{% endblock %}
|
|
{% block body_class %}{{ block.super }} post_archive_year{% endblock %}
|
|
|
|
|
|
{% block main-content_title %}
|
|
<h2>Post archive for {{ year }}</h2>
|
|
{% endblock %}
|
|
|
|
|
|
{% block main-content %}
|
|
{% load markup %}
|
|
|
|
<ul class="link_list">
|
|
{% for month in date_list %}
|
|
<li><a href="{% url blog_index %}{{ year }}/{{ month|date:"b" }}/">{{ month|date:"F" }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %} |