mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-27 07:03:55 +00:00
16 lines
296 B
HTML
16 lines
296 B
HTML
{% extends "base_weblog.html" %}
|
|
|
|
{% block title %}Weblog | {{ year }}{% endblock %}
|
|
|
|
{% block main-content %}
|
|
|
|
<h2>{{ year }} archive</h2>
|
|
|
|
<ul class="linklist">
|
|
{% for date in date_list %}
|
|
<li><a href="{{ date|date:"M"|lower }}/">{{ date|date:"F" }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %}
|