소스 검색

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 %}