Use outside packages.
[prawokultury.git] / menu / templates / menu / menu.html
diff --git a/menu/templates/menu/menu.html b/menu/templates/menu/menu.html
new file mode 100755 (executable)
index 0000000..56debe5
--- /dev/null
@@ -0,0 +1,7 @@
+{% load i18n %}
+{% for item in items %}
+    <li{% if item.active %} 
+        class="active"{%endif %} {% if item.html_id %}
+        id="{{ item.html_id}}"{% endif %}>
+        <a href="{{ item.get_url }}">{{ item.get_title }}</a></li>
+{% endfor %}