{# doc.html --- documentation article template -*- Mode: Jinja2; -*- #} {% extends "layout.html" %} {% block title %}documentation{% endblock %} {% block page %}
{# Links for all entries in the same route; always starts with index #}

Getting Started

{% for subpost in weblorg_route_posts(route.name) %} {% if subpost.slug != "index" %}

{{ subpost.title }}

{% endif %} {% endfor %}
{# Content of the currently selected post #}
{% if post.title %}

{{ post.title }}

{% endif %}
{{ post.html|safe }}
{% endblock %}