layout/skeleton/_innerlisting.html @ df865ed70aa0
Remove the useless Hyde post.
author |
Steve Losh <steve@stevelosh.com> |
date |
Wed, 23 Dec 2009 19:22:29 -0500 |
parents |
89007a40aea4 |
children |
cf38a58b1927 |
{% extends "skeleton/_root.html" %}
{% block all %}
{%spaceless%}
{% 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>
<span class="snip">{{ list_page.snip }}</span>
</li>
{%endif%}
{% endifnotequal %}
{% endfor %}
{%endspaceless%}
{% endblock %}