layout/skeleton/_listing.html @ 2060e7f9bdfc

Fixed a couple of typos.
author Alex Vidal <alex.vidal@gmail.com>
date Wed, 29 Jun 2011 20:50:51 -0700
parents def464696a83
children (none)
{% extends "skeleton/_base.html"%}

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