Skip to content

Instantly share code, notes, and snippets.

View jonathanfann's full-sized avatar

Jonathan Fann jonathanfann

View GitHub Profile
@jonathanfann
jonathanfann / lektor_nav_list.html
Last active October 21, 2016 14:45
Navigation Example in Lektor (Jinja-like Pythonic Static Site Generator)
{% set root = site.get('/business') %}
{% for child in root.children.order_by('id', 'title') %}
<li>
<a href="{{ child|url }}">{{ child.title }}</a>
</li>
{% endfor %}