diff options
Diffstat (limited to 'SOB/templates/archives.html')
-rw-r--r-- | SOB/templates/archives.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/SOB/templates/archives.html b/SOB/templates/archives.html new file mode 100644 index 0000000..1770aae --- /dev/null +++ b/SOB/templates/archives.html @@ -0,0 +1,17 @@ + {% extends "base.html" %} + {% block content %} + <div id="content"> + <h3>Archives</h3> + <table> + <tbody> + {% for article in dates %} + <tr> + + <td class="date">{{ article.locale_date }}</td> + <td><a href='{{ article.url }}'>{{ article.title }}</a></td> + </tr> + {% endfor %} + </tbody> + </table> + </div> + {% endblock %} |