]> git.somenet.org - somenet/www-somenet-org.git/blob - theme/templates/sidebar.html
Pelican base page setup with base-content + theme.
[somenet/www-somenet-org.git] / theme / templates / sidebar.html
1 <ul class="nav nav-list">
2 {% if LINKS %}
3 <li class="nav-header"><h4><i class="icon-external-link"></i>links</h4></li>
4 {% for name, link in LINKS %}
5     <li><div><i class="icon-external-link"></i><a href="{{ link }}">{{ name }}</a></div></li>
6 {% endfor %}
7 {% endif %}
8 {% if SOCIAL %}
9 <li class="nav-header"><h4><i class="icon-home icon-large"></i> social</h4></li>
10 {% if FEED_ATOM %}
11 <li><a href="{{ SITEURL }}/{{ FEED_ATOM }}" rel="alternate"><i class="icon-bookmark icon-large"></i>atom feed</a></li>
12 {% endif %}
13 {% if FEED_RSS %}
14 <li><a href="{{ SITEURL }}/{{ FEED_RSS }}" rel="alternate"><i class="icon-bookmark icon-large"></i>rss feed</a></li>
15 {% endif %}
16 {% for name, link in SOCIAL %}
17     <li><a href="{{ link }}"><i class="icon-{{ name }}-sign icon-large"></i>{{ name }}</a></li>
18 {% endfor %}
19 {% endif %}
20
21 <li class="nav-header"><h4><i class="icon-folder-close icon-large"></i>Categories</h4></li>
22 {% for cat, null in categories %}
23 <li>
24 <a href="{{ SITEURL }}/{{ cat.url }}">
25     <i class="icon-folder-open icon-large"></i>{{ cat }}
26 </a>
27 </li>
28 {% endfor %}
29
30 {% if 'tag_cloud' in PLUGINS %}
31 <li class="nav-header"><a href="{{ SITEURL }}/tags.html"><h4><i class="icon-tags icon-large"></i>Tags</h4></a></li>
32 {# <li>
33 <div id="tags">
34   <ul>#}
35 {% for tag in tag_cloud %}
36     <li class="tag-{{ tag.1 }}">
37         <a href="{{ SITEURL }}/{{ tag.0.url }}">
38             <i class="icon-tag icon-large"></i>{{ tag.0 }}
39         </a>
40     </li>
41 {% endfor %}
42 {% endif %}
43 {#  </ul>
44 </div>
45 <div id="myCanvasContainer">
46   <canvas width="230" height="230" id="myCanvas">
47     <p>Anything in here will be replaced on browsers that support the canvas element</p>
48   </canvas>
49 </div>
50 </li>#}
51
52 {% include 'search_sidebar.html' %}
53
54 {% if SIDEBAR_CUSTOM %}
55     {{ SIDEBAR_CUSTOM }}
56 {% endif %}
57 </ul>