layout/skeleton/_innerlisting.html @ e030519b448d
Finish adding the 2008 articles.
author |
Steve Losh <steve@stevelosh.com> |
date |
Wed, 23 Dec 2009 18:29:35 -0500 |
parents |
dad1fb1655ec |
children |
ae05dad4acfb |
{% extends "skeleton/_root.html" %}
{% block all %}
{%spaceless%}
<ol>
{% for list_page in node.pages %}
{% ifnotequal list_page node.listing_page %}
{% if not list_page.exclude %}
<li>
<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 %}
</ol>
{%endspaceless%}
{% endblock %}