aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/menu.html
diff options
context:
space:
mode:
Diffstat (limited to 'theme/templates/menu.html')
-rwxr-xr-xtheme/templates/menu.html53
1 files changed, 53 insertions, 0 deletions
diff --git a/theme/templates/menu.html b/theme/templates/menu.html
new file mode 100755
index 0000000..b8ecd50
--- /dev/null
+++ b/theme/templates/menu.html
@@ -0,0 +1,53 @@
+{% macro submenu(elements, link, name) -%}
+ {% if elements %}
+ <li class='has-sub'><a href="{{ SITEURL }}/{{link}}.html"><span>{{name}}</span></a>
+ <ul>
+ {% for tag, articles in elements %}
+ <li><a href="{{SITEURL}}/{{tag.url}}"><span>{{ tag }}</span></a></li>
+ {% endfor %}
+ </ul>
+ </li>
+ {% endif %}
+{%- endmacro %}
+
+<div id="cssmenu">
+<ul>
+ <li class='has-sub'><a href="{{ SITEURL }}/">Articles</a>
+ <ul>
+ {% for article in articles %}
+ {% if loop.index < FEED_MAX_ITEMS %}
+ <li><a href="{{ SITEURL }}/{{ article.url}}">{{ article.title }}</a></li>
+ {% endif %}
+ {% endfor %}
+ <hr/>
+ <li><a href="{{ SITEURL }}/archives.html">Archives</a>
+ </ul>
+ </li>
+
+ {{ submenu(categories, 'categories', 'Catégories') }}
+ {{ submenu(tags, 'tags', 'Mots-clefs') }}
+
+
+{#
+ {% if FEED or FEED_RSS %}
+ <li class='has-sub'><a href="{{ SITEURL }}/#">S'abonner</a>
+ <ul>
+ {% if FEED %}
+ <li><a href="{{ SITEURL }}/{{ FEED }}" rel="alternate">Flux ATOM</a></li>
+ {% endif %}
+ {% if FEED_RSS %}
+ <li><a href="{{ SITEURL }}/{{ FEED_RSS }}" rel="alternate">Flux RSS</a></li>
+ {% endif %}
+
+ {% if categories %}
+ {% for category, articles in categories %}
+ <li><a href="{{SITEURL}}/{{CATEGORY_FEED_ATOM % (category)}}"><span>{{ category }}</span></a></li>
+ {% endfor %}
+ {% endif %}
+ </ul>
+ </li>
+ {% endif %}
+#}
+
+</ul>
+</div>