|
Revision 15, 419 bytes
(checked in by simon, 13 months ago)
|
|
Added an Atom feed.
|
| Line | |
|---|
| 1 | {% load substructure_tags %}<?xml version="1.0" encoding="utf-8"?> |
|---|
| 2 | <feed xmlns="http://www.w3.org/2005/Atom"> |
|---|
| 3 | <title>{{ site_name|escape }}</title> |
|---|
| 4 | <id>http://{{ site_domain }}/</id> |
|---|
| 5 | <link href="http://{{ site_domain }}/"/> |
|---|
| 6 | <updated>{{ most_recent_date_published|rfc3339 }}</updated> |
|---|
| 7 | <author><name>Simon Bates</name></author> |
|---|
| 8 | {% for entry in entry_list %}{% include "substructure/atom_entry.xml" %}{% endfor %} |
|---|
| 9 | </feed> |
|---|