aboutsummaryrefslogblamecommitdiffstats
path: root/SOB/templates/archives.html
blob: 1770aae22bd967c20a1f04358c0b72d1c61e7e0e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 %}