59 lines
1.7 KiB
HTML

<ul class="nav nav-list">
<!-- Categories links -->
{% if DISPLAY_CATEGORIES_ON_BAR %}
<li class="nav-header"><h4><i class="icon-folder-close icon-large"></i> Categories</h4></li>
{% for cat, null in categories %}
<li>
<a href="{{ SITEURL }}/{{ cat.url }}">
<i class="icon-folder-open icon-large"></i>{{ cat }}
</a>
</li>
{% endfor %}
<hr>
{% endif %}
<!-- Social links -->
{% if SOCIAL %}
<li class="nav-header"><h4><i class="icon-exchange"></i> social</h4></li>
<a class="FlattrButton" style="display:none;"
title="{{ SITEURL }}"
style="padding-top: 10px;"
rel="flattr;
url:{{ SITEURL }};
title:{{ SITEURL }};
button:compact;
popout:0;
uid:wxcafe;
category:blog;"
href="{{ SITEURL }}">flattr</a>
{% for name, link, icon in SOCIAL %}
<li><a href="{{ link }}"><i class="icon-{{ icon }} icon-large"></i> {{ name }}</a></li>
{% endfor %}
<hr>
{% endif %}
<!-- Links -->
{% if LINKS %}
<li class="nav-header"><h4><i class="icon-external-link"></i> Links</h4></li>
{% for name, link, icon in LINKS %}
<li><a href="{{ link }}"><i class="icon-{{ icon }} icon-large "></i> {{ name }}</a></li>
{% endfor %}
<hr>
{% endif %}
<!--- RSS feed -->
<li class="nav-header"><h4><i class="icon-rss"></i> feeds</h4></li>
<li><a href="{{ SITEURL }}/{{ FEED_RSS }}" rel="alternate"><i class="icon-bookmark-empty icon-large"></i> RSS</a></li>
<li><a href="{{ SITEURL }}/{{ FEED_ATOM }}" rel="alternate"><i class="icon-bookmark-empty icon-large"></i> Atom</a></li>
{% include 'twitter_profile.html' %}
{% include 'search_sidebar.html' %}
{% if SIDEBAR_CUSTOM %}
{{ SIDEBAR_CUSTOM }}
{% endif %}
</ul>