layout/skeleton/_innerlisting.html @ b2f55c835d06

More cleanup.
author Steve Losh <steve@stevelosh.com>
date Wed, 16 Dec 2009 19:56:37 -0500
parents 673df76b12d6
children dad1fb1655ec
{% extends "skeleton/_root.html" %}

{% block all %}
{%spaceless%}
<ul id="archives">
    {% for list_page in node.pages %}
        {% ifnotequal list_page node.listing_page %}
            {% if not list_page.exclude %}
                <li class="archives">
                    <a href="{{ list_page.url }}">
                        {% with list_page.name_without_extension|remove_date_prefix|unslugify as default_title %}
                            {{ list_page.title|default_if_none:default_title }}
                        {%endwith%}
                    </a>
                </li>
            {%endif%}
        {% endifnotequal %}
    {% endfor %}
</ul>
{%endspaceless%}
{% endblock %}