diff options
author | frantic1048 <franticblack@163.com> | 2013-11-21 16:11:50 +0800 |
---|---|---|
committer | frantic1048 <franticblack@163.com> | 2013-11-21 16:11:50 +0800 |
commit | 168b866cbafb6c3988097261cc48af7270ec72e9 (patch) | |
tree | 61085c3510852a7645743b7b49a8044aee930da2 /franticworld/templates/sidebar.html | |
parent | 84fe361a8e3a64e524471b5d36927fd50086926d (diff) | |
download | pelican-themes-168b866cbafb6c3988097261cc48af7270ec72e9.tar.gz |
add franticworld's theme
Diffstat (limited to 'franticworld/templates/sidebar.html')
-rw-r--r-- | franticworld/templates/sidebar.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/franticworld/templates/sidebar.html b/franticworld/templates/sidebar.html new file mode 100644 index 0000000..c8811c2 --- /dev/null +++ b/franticworld/templates/sidebar.html @@ -0,0 +1 @@ +<div class="sidebarcategory">
<h4>Categories</h4>
{% for cat, null in categories %}
<li><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
{% endfor %}
</div>
<div class="sidebarpages">
{% if PAGES %}
<h4>Pages</h4>
{% for page in PAGES %}
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
{% endif %}
</div>
<div class="sidebarblogroll">
{% if LINKS %}
<h4>Blogroll</h4>
{% for name, link in LINKS %}
<li><a href="{{ link }}" target="_blank">{{ name }}</a></li>
{% endfor %}
{% endif %}
</div>
<div class="sidebarsocial">
{% if SOCIAL %}
<h4>Social</h4>
{% for name, link in SOCIAL %}
<li><a href="{{ link }}">{{ name }}</a></li>
{% endfor %}
{% endif %}
</div>
\ No newline at end of file |