layout/skeleton/_breadcrumbs.html @ 637a1763479b
More shuffling.
This is going to take a lot of work to transform the layout.
author |
Steve Losh <steve@stevelosh.com> |
date |
Wed, 16 Dec 2009 19:21:22 -0500 |
parents |
81d4da7f81f5 |
children |
(none) |
{% extends "skeleton/_root.html" %}
{% block all %}
<ul class="breadcrumbs">
{% for node in page.node.ancestors %}
<li>
<a href="{{node.listing_url}}">{{node.name|unslugify}}</a>
{% if not forloop.last%}{% block breadcrumb_seperator %}
<span class="separator">></span>{% endblock %}{% endif %}
</li>
{% endfor %}
</ul>
{% endblock %}