1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-27 11:44:37 +00:00
scrapy/sites/scrapy.org/templates/blog/post_archive_year.html
Ismael Carnales 48682189b4 using a modified version of django simple blog
--HG--
extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40572
2008-12-29 16:50:49 +00:00

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 %}