blob: 3eccf796b0dd0e8e74da76909f20041b56e7bd4a (
plain) (
blame)
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
40
41
42
43
44
45
46
47
48
49
50
51
|
<div class="three columns">
{% if DISPLAY_PAGES_ON_MENU %}
<h4>Pages</h4>
<ul>
{% for title, link in MENUITEMS %}
<li><a href="{{ link }}">{{ title }}</a></li>
{% endfor %}
{% for p in pages %}
<li {% if p==page %} class="active" {% endif %}><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li>
{% endfor %}
{% else %}
</ul>
{% endif %}
{% if DISPLAY_CATEGORIES_ON_MENU %}
{% if categories and categories|length > 1 %}
<h4>Categories</h4>
<ul class="blank">
{% for cat, null in categories %}
<li><a href="{{ SITEURL }}/{{ cat.url|e }}">{{ cat }}</a></li>
{% endfor %}
</ul>
{% endif %}
{% endif %}
{% if tag_cloud %}
<h4>Tags</h4>
<ul class="blank">
{% for tag in tag_cloud %}
<li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/{{ tag.0.url }}">{{ tag.0|e }}</a></li>
{% endfor %}
</ul>
{% endif %}
{% if SOCIAL %}
<nav class="widget">
<h4>Social</h4>
<ul class="blank">
{% for name, url in SOCIAL %}
<li><a href="{{ url|e }}">{{ name }}</a></li>
{% endfor %}
</ul>
</nav>
{% endif %}
</div>
|