layout/skeleton/_listing.html @ 9bd11f5c9786

Add Disqus comments.

I'll deal with the train wreck that is Disqus' layout/typography later.
author Steve Losh <steve@stevelosh.com>
date Sat, 09 Jan 2010 03:31:55 -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 %}