mirror of
https://github.com/kennethreitz-archive/winchestar.git
synced 2026-06-21 16:00:59 +00:00
22 lines
548 B
HTML
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 © 2010 The Wincheser Star. Only for use by paid subscribers.</em></p> |