layout/skeleton/_listing.html @ 45de198aa529

Add the rest of the project photos, and the gallery script.
author Steve Losh <steve@stevelosh.com>
date Fri, 25 Dec 2009 20:15:07 -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 %}