Skip to content

Instantly share code, notes, and snippets.

@jonathanfann
Last active October 21, 2016 14:45
Show Gist options
  • Save jonathanfann/961862ddd9c05b4ab4f652ab2d7a0fb9 to your computer and use it in GitHub Desktop.
Save jonathanfann/961862ddd9c05b4ab4f652ab2d7a0fb9 to your computer and use it in GitHub Desktop.
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 %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment