root/branches/0.9/pylucid_project/pylucid_plugins/update_journal/templates/update_journal/select_feed.html

Revision 2530, 0.8 KB (checked in by JensDiemer, 6 months ago)

New: Update Journal can send RSS/Atom feeds.

Line 
1{% extends template_name %}
2
3{% block content %}
4<div class="{{ CSS_PLUGIN_CLASS_NAME }} update_journal_feed">
5<h2>{% trans "Please select syndication feed format:" %}</h2>
6<ul>
7{% for feed in feeds %}
8    <li>
9        <a href="{% url UpdateJournal-feed feed.filename %}">{% url UpdateJournal-feed feed.filename %}</a>
10        <small>(
11        {% if feed.filename == "feed.rss" %}
12            <a href="{% trans "http://en.wikipedia.org/wiki/RSS" %}">Really Simple Syndication</a> v2.01rev2
13        {% endif %}
14        {% if feed.filename == "feed.atom" %}   
15            <a href="{% trans "http://en.wikipedia.org/wiki/Atom_(standard)" %}">Atom Syndication Format</a> v1.0
16        {% endif %}
17        )
18        </small>
19    </li>   
20{% endfor %}
21</lu>
22</div>
23{% endblock content %}
Note: See TracBrowser for help on using the browser.