{% include 'incl/header.html' %} {% include 'incl/nextprev.html' %}

{{ page.title }}


{% for c in page.content %} {% if c.name == 'ol' %}
    {% for li in c.content %}
  1. {{ li|linker }}
  2. {% endfor %}
{% endif %} {% if c.name == 'ul' %} {% endif %} {% if c.name == 'verbatim' %}
{{ c.content[0] | e }}
{% endif %} {% if c.name == 'aside' %}
{% for row in c.content %} {{ row|linker }} {% endfor %}
{% endif %} {% if c.name == 'p' %}

{{ c.content[0]|linker }}

{% endif %} {% if c.name == 'include' %} {{ c.title }}
{% if c.filename.endswith('.out') or c.filename.endswith('.err') %} {% else %} {{ c.filename }}
{% endif %}
{{ c.content[0]|syntax(c.filename) }}
{% endif %} {% if c.name == 'image' %} {% endif %} {% if c.name == 'video' %} {% endif %} {% endfor %} {% include 'incl/footer.html' %}