浏览代码

Add title for RSS icon in social widget

Talha Mansoor 11 年之前
父节点
当前提交
c42ed9033e
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      templates/_includes/social_links.html

+ 3 - 0
templates/_includes/social_links.html

@@ -12,6 +12,9 @@
             {% if item.lower() == 'email' %}
                 {% set link_title = 'My ' + item + ' Address' %}
                 {% set link_icon = 'envelope' %}
+            {% elif item.lower() == 'rss' %}
+                {% set link_title = 'Subscribe in a reader' %}
+                {% set link_icon = 'rss' %}
             {% endif %}
             {% if f_entry.insert(0, link_title) %}{% endif %}
             {% if f_entry.insert(1, link_icon) %}{% endif %}