diff options
author | Masayuki Igawa <masayuki@igawa.me> | 2017-04-09 06:35:19 +0900 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2017-04-08 23:35:19 +0200 |
commit | 72c9ae3c3953c95f82a342512b90ae132b55f4bb (patch) | |
tree | 3cfeda2fecf4d2ae2d5ffc5184091c8aca9b7d5b /pelican-bootstrap3/templates/includes/sidebar | |
parent | cac94aebc92275e6f651982424ea4a06d9715a5d (diff) | |
download | pelican-themes-72c9ae3c3953c95f82a342512b90ae132b55f4bb.tar.gz |
Add instagram to non-square icon in pelican-bootstrap3 (#401)
This commit adds instagram to non-square icon in pelican-bootstrap3
theme to use it.
Diffstat (limited to 'pelican-bootstrap3/templates/includes/sidebar')
-rw-r--r-- | pelican-bootstrap3/templates/includes/sidebar/social.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pelican-bootstrap3/templates/includes/sidebar/social.html b/pelican-bootstrap3/templates/includes/sidebar/social.html index 13fb267..3b768db 100644 --- a/pelican-bootstrap3/templates/includes/sidebar/social.html +++ b/pelican-bootstrap3/templates/includes/sidebar/social.html @@ -11,7 +11,7 @@ {% else %} {% set name_sanitized = s[0]|lower|replace('+','-plus')|replace(' ','-') %} {% endif %} - {% if name_sanitized in ['flickr', 'slideshare', 'spotify', 'stack-overflow', 'weibo', 'line-chart', 'home', 'user', 'users', 'envelope', 'envelope-o', 'stack-exchange', 'hacker-news'] %} + {% if name_sanitized in ['flickr', 'slideshare', 'instagram', 'spotify', 'stack-overflow', 'weibo', 'line-chart', 'home', 'user', 'users', 'envelope', 'envelope-o', 'stack-exchange', 'hacker-news'] %} {% set iconattributes = '"fa fa-' ~ name_sanitized ~ ' fa-lg"' %} {% else %} {% set iconattributes = '"fa fa-' ~ name_sanitized ~ '-square fa-lg"' %} |