Files
Kenneth Reitz 3db3cae450 refactorz
2011-01-30 17:52:50 -05:00

22 lines
548 B
HTML

<h1>Winchester News</h1>
{% if articles %}
<h2>{{ today }}</h2>
<ul>
{% for date, arts in articles.iteritems %}
<h3>{{ date|date:_('N j, Y') }}</h3>
{% for article in arts %}
<li><a href="{{ article.get_absolute_url }}/">{{ article.title }}</a></li>
{% endfor%}
{% endfor %}
</ul>
{% else %}
<p>No articles are available.</p>
{% endif %}
<a href='/rss/'>RSS Feed</a>
<p></p><em>All articles &copy; 2010 The Wincheser Star. Only for use by paid subscribers.</em></p>