diff options
author | Raphael Hoegger <blog@pfuender.net> | 2016-02-10 01:04:46 +0100 |
---|---|---|
committer | Raphael Hoegger <blog@pfuender.net> | 2016-02-10 01:04:46 +0100 |
commit | d2127577b773c84dda0416e94f9f86a47b790600 (patch) | |
tree | c18901e8071874a31e0e808ea14095946146691e /new-bootstrap2/templates | |
parent | 8c9952944f6dc0c8862683fc7b4813c6c02dbe8a (diff) | |
download | pelican-themes-d2127577b773c84dda0416e94f9f86a47b790600.tar.gz |
tag_cloud is a plugin as of 3.6.0 of pelican + making feed_atom optional
Diffstat (limited to 'new-bootstrap2/templates')
-rw-r--r-- | new-bootstrap2/templates/sidebar.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/new-bootstrap2/templates/sidebar.html b/new-bootstrap2/templates/sidebar.html index e4ffcdd..88443b4 100644 --- a/new-bootstrap2/templates/sidebar.html +++ b/new-bootstrap2/templates/sidebar.html @@ -7,7 +7,9 @@ {% endif %} {% if SOCIAL %} <li class="nav-header"><h4><i class="icon-home icon-large"></i> social</h4></li> +{% if FEED_ATOM %} <li><a href="{{ SITEURL }}/{{ FEED_ATOM }}" rel="alternate"><i class="icon-bookmark icon-large"></i>atom feed</a></li> +{% endif %} {% if FEED_RSS %} <li><a href="{{ SITEURL }}/{{ FEED_RSS }}" rel="alternate"><i class="icon-bookmark icon-large"></i>rss feed</a></li> {% endif %} @@ -25,6 +27,7 @@ </li> {% endfor %} +{% if 'tag_cloud' in PLUGINS %} <li class="nav-header"><a href="{{ SITEURL }}/tags.html"><h4><i class="icon-tags icon-large"></i>Tags</h4></a></li> {# <li> <div id="tags"> @@ -36,6 +39,7 @@ </a> </li> {% endfor %} +{% endif %} {# </ul> </div> <div id="myCanvasContainer"> |