layout/skeleton/_listing.html @ 18c7a651e42e

Switch around the title.
author Steve Losh <steve@stevelosh.com>
date Wed, 23 Dec 2009 19:17:40 -0500
parents 62daa229e3e8
children 08d7552b6237
{% extends "skeleton/_base.html"%}

{% block content %}
    <div id="section-listing">
        <ol>
            {% for node in page.node.walk reversed %}
                {% include "skeleton/_innerlisting.html" %}
            {% endfor %}
        </ol>
    </div>
{% endblock %}