diff options
-rw-r--r-- | pelican-bootstrap3/templates/includes/sidebar.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pelican-bootstrap3/templates/includes/sidebar.html b/pelican-bootstrap3/templates/includes/sidebar.html index b5b173f..b545c7a 100644 --- a/pelican-bootstrap3/templates/includes/sidebar.html +++ b/pelican-bootstrap3/templates/includes/sidebar.html @@ -5,9 +5,10 @@ <section class="well well-sm"> <ul class="list-group list-group-flush"> {% if SIDEBARITEMS %} - {% for name, link in SIDEBARITEMS %} + {% for name, link, icon in SIDEBARITEMS %} <li class="list-group-item sidebar-links"> <a href="{{ link }}"> + <i class="fa fa-{{ icon }} fa-fw"></i> {{ name }} </a> </li> @@ -16,7 +17,9 @@ {% if FEED_ALL_ATOM %} <li class="list-group-item sidebar-links"> <a href="{{ SITEURL }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate"> - Feed</a> + <i class="fa fa-rss fa-fw"></i> + Feed + </a> </li> {% endif %} |