layout/skeleton/_listing.html @ 52caaba6d6df
Update resume.
author |
Steve Losh <steve@stevelosh.com> |
date |
Sat, 16 Jan 2010 19:41:19 -0500 |
parents |
08d7552b6237 |
children |
336b9c458690 |
{% extends "skeleton/_base.html"%}
{% block extra_header %}{% if page.node.categories %} / {% endif %}{% endblock %}
{% block after_header %}
{% if page.node.categories %}
<ul id="section-tags">
<span class="section-tags-col">
{% for category in page.node.categories.keys %}
<li><a href="{{ page.url }}{{ category }}">{{ category }}</a></li>
{% if forloop.counter|divisibleby:2 %}
{% if not forloop.last %}
</span><span class="section-tags-col">
{% endif %}
{% endif %}
{% endfor %}
</span>
</ul>
{% endif %}
{% endblock %}
{% block content %}
<div id="section-listing">
<ol>
{% for node in page.node.walk reversed %}
{% include "skeleton/_innerlisting.html" %}
{% endfor %}
</ol>
</div>
{% endblock %}