summaryrefslogtreecommitdiffstats
path: root/pelican-themes/gum/templates/sidebar.html
blob: 288b1b2e2d2a58339f7618a83ca5c3ae3e1bc569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<div class="three columns">





{% if SOCIAL %}
<nav class="widget">
  <h4>Social</h4>
  <ul>
  {% for name, url in SOCIAL %}
    <li><a href="{{ url|e }}">{{ name }}</a></li>
  {% endfor %}
  </ul>
</nav>
{% endif %}

<h4>Links</h4>

 <ul>
{% for title, link in LINKS %}
    <li><a href="{{ link }}">{{ title }}</a></li>
{% endfor %}
</ul>
<h4>Tags</h4>
<ul class="tagcloud">
    {% for tag in tag_cloud %}
        <li class="tag-{{ tag.1 }}">
            <a href="{{ SITEURL }}/{{ tag.0.url }}">
            {{ tag.0 }}
                {% if TAG_CLOUD_BADGE %}
                    <span class="badge">{{ tag.2 }}</span>
                {% endif %}
            </a>
        </li>
    {% endfor %}
</ul>

</div>