Feed link, as an includable template!
authorChristopher Allan Webber <cwebber@dustycloud.org>
Fri, 19 Aug 2011 02:28:00 +0000 (21:28 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Fri, 19 Aug 2011 02:28:00 +0000 (21:28 -0500)
mediagoblin/templates/mediagoblin/listings/tag.html
mediagoblin/templates/mediagoblin/user_pages/gallery.html
mediagoblin/templates/mediagoblin/user_pages/user.html
mediagoblin/templates/mediagoblin/utils/feed_link.html [new file with mode: 0644]

index bf2b4c01289ef26da02b92c49c19883ecf1b25a7..289f44b8150da882f4f26abc83cd866c658b5ee1 100644 (file)
     {% set feed_url = request.urlgen(
                'mediagoblin.listings.tag_atom_feed',
                tag=tag_slug) %}
-    <a href="{{ feed_url }}">
-      <img src="{{ request.staticdirect('/images/icon_feed.png') }}"
-           class="media_icon" alt="{% trans %}feed icon{% endtrans %} />
-    </a>
-    <a href="{{ feed_url }}">{%- trans %}Atom feed{% endtrans -%}</a>
+    {% include "mediagoblin/utils/feed_link.html" %}
   </div>
 {% endblock %}
index e54422da63f6f5d4d18371b6dc47ce811195b475..3a3d237331520ba45d0e3bf6da8be085a1af4321 100644 (file)
       {% set feed_url = request.urlgen(
                 'mediagoblin.user_pages.atom_feed',
                 user=user.username) %}
-      <a href="{{ feed_url }}">
-        <img src="{{ request.staticdirect('/images/icon_feed.png') }}"
-             class="media_icon" alt="{% trans %}feed icon{% endtrans %}" />
-      </a>
-      <a href="{{ feed_url }}">{%- trans %}Atom feed{% endtrans -%}</a>
+      {% include "mediagoblin/utils/feed_link.html" %}
     </div>
   {% else %}
     {# This *should* not occur as the view makes sure we pass in a user. #}
index 02e6fdc294f8138eafa55ee9303cc7a37d8a302c..0214082c0ffecb55cf439beb6306f7c7b4fe1083 100644 (file)
         {% set feed_url = request.urlgen(
                   'mediagoblin.user_pages.atom_feed',
                   user=user.username) %}
-        <a href="{{ feed_url }}">
-          <img src="{{ request.staticdirect('/images/icon_feed.png') }}"
-               class="media_icon" alt="{% trans %}feed icon{% endtrans %}" />
-        </a>
-        <a href="{{ feed_url }}">{%- trans %}Atom feed{% endtrans -%}</a>
+        {% include "mediagoblin/utils/feed_link.html" %}
       </div>
     {% else %}
       {% if request.user['_id'] == user['_id'] %}
diff --git a/mediagoblin/templates/mediagoblin/utils/feed_link.html b/mediagoblin/templates/mediagoblin/utils/feed_link.html
new file mode 100644 (file)
index 0000000..c4036bf
--- /dev/null
@@ -0,0 +1,23 @@
+{#
+# GNU MediaGoblin -- federated, autonomous media hosting
+# Copyright (C) 2011 Free Software Foundation, Inc
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#}
+
+<a href="{{ feed_url }}">
+  <img src="{{ request.staticdirect('/images/icon_feed.png') }}"
+       class="media_icon" alt="{% trans %}feed icon{% endtrans %}" />
+</a>
+<a href="{{ feed_url }}">{%- trans %}Atom feed{% endtrans -%}</a>