{% extends 'base.html' %}
{% block title %}Archives{% endblock title %}
{% block contents %}
Recent Entry
{% for story in latest_story_list %}
- {{ story.published_datetime }} {{ story.title }}
{% endfor %}
Archives
{% for year, months in year_month.items() %}
- {{ year }} {% for month in months %}{{ month }}月 {% endfor %}
{% endfor %}
{% endblock contents %}