diff options
author | Jef van Schendel <jefvanschendel@gmail.com> | 2011-08-18 15:53:52 +0200 |
---|---|---|
committer | Jef van Schendel <jefvanschendel@gmail.com> | 2011-08-18 15:53:52 +0200 |
commit | 1f5a55f667bdb497d7baa9a13806f043799d66aa (patch) | |
tree | 93fe31fd0773aed02807f6fe47c09e7913e13ea0 | |
parent | 0146307b884515259405798e155ff33b5ca4bd91 (diff) | |
download | mediagoblin-1f5a55f667bdb497d7baa9a13806f043799d66aa.tar.lz mediagoblin-1f5a55f667bdb497d7baa9a13806f043799d66aa.tar.xz mediagoblin-1f5a55f667bdb497d7baa9a13806f043799d66aa.zip |
Replace the Feed icon with a transparent one, put it next to the [atom feed] links
-rw-r--r-- | mediagoblin/static/images/icon_feed.png | bin | 522 -> 378 bytes | |||
-rw-r--r-- | mediagoblin/templates/mediagoblin/listings/tag.html | 5 | ||||
-rw-r--r-- | mediagoblin/templates/mediagoblin/user_pages/user.html | 5 |
3 files changed, 6 insertions, 4 deletions
diff --git a/mediagoblin/static/images/icon_feed.png b/mediagoblin/static/images/icon_feed.png Binary files differindex 11e5b1e7..81889473 100644 --- a/mediagoblin/static/images/icon_feed.png +++ b/mediagoblin/static/images/icon_feed.png diff --git a/mediagoblin/templates/mediagoblin/listings/tag.html b/mediagoblin/templates/mediagoblin/listings/tag.html index a43355a7..d047096b 100644 --- a/mediagoblin/templates/mediagoblin/listings/tag.html +++ b/mediagoblin/templates/mediagoblin/listings/tag.html @@ -38,8 +38,9 @@ <div class="grid_16"> <a href="{{ request.urlgen( 'mediagoblin.listings.tag_atom_feed', - tag=tag_slug) }}"> - {%- trans %}atom feed{% endtrans -%} + tag=tag_slug) }}" + ><img src="{{ request.staticdirect('/images/icon_feed.png') }}" + class="media_icon" />{%- trans %}atom feed{% endtrans -%} </a> </div> {% endblock %} diff --git a/mediagoblin/templates/mediagoblin/user_pages/user.html b/mediagoblin/templates/mediagoblin/user_pages/user.html index 4649c8c7..ce6415d7 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/user.html +++ b/mediagoblin/templates/mediagoblin/user_pages/user.html @@ -100,8 +100,9 @@ </a> </p> <a href="{{ request.urlgen( 'mediagoblin.user_pages.atom_feed', - user=user.username) }}"> - {%- trans %}atom feed{% endtrans -%} + user=user.username) }}" + ><img src="{{ request.staticdirect('/images/icon_feed.png') }}" + class="media_icon" />{%- trans %}atom feed{% endtrans -%} </a> </div> |