layout/skeleton/_listing.html @ 467bf986634a

Add and use the jQuery ColorBox plugin.
author Steve Losh <steve@stevelosh.com>
date Thu, 07 Jan 2010 19:15:12 -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 %}