use the Jekyll pages information to create the menu
[web.git] / _includes / menu-level.html
index 0b25bd7ec65fe27376317dfdd3b3f1ec8f82b181..5f5ac469dcc8e79e609613aca88204f79e2b4816 100644 (file)
@@ -1,12 +1,6 @@
-<ul>{% for item in include.menu %}<!--
-    {% comment %} We compute the full URL of this item, and truncate canonicalurl so that length so we can test whether it starts with it {% endcomment %}
-    {% assign cururl = item.url | prepend: include.base %}
-    {% assign isparent_search = canonicalurl | truncate: cururl.size, '' %}
-    {% capture class %}{% if cururl == canonicalurl %}current{% elsif include.above != true %}child{% elsif isparent_search == cururl %}parent{% else %}sibling{% endif %}{% endcapture %}
-    {% comment %} Now we can output the item and it substructure. Try hard not to output unnecessary spaces! {% endcomment %}
-    --><li class="{{ class }}"><a href="{{ item.url | prepend: include.base }}">{{ item.title }}</a></li><!--
-    {% if item.structure and (class == "current" or class == "parent") %}
-        {% if cururl == canonicalurl %}{% assign above = false %}{% else %}{% assign above = true %}{% endif %}
-        -->{% include menu-level.html menu=item.structure base=cururl above=above %}<!--
+<ul><!--{% for item in include.menu %}
+    --><li class="{{ item.class }}"><a href="{{ item.url }}">{{ item.url }}: {{ item.title }}</a></li><!--
+    {% if item.sub %}
+        -->{% include menu-level.html menu=item.sub %}<!--
     {% endif %}
--->{% endfor %}</ul>
\ No newline at end of file
+{% endfor %}--></ul>
\ No newline at end of file