templates/blog/list.html @ 9f1be6d74c1b

Cleanup Tuesdays - Cleaned the URLs up a bit.
author Steve Losh <steve@stevelosh.com>
date Tue, 24 Mar 2009 18:51:21 -0400
parents a4cf6f60dd02
children 115fd0ac6843
{% extends "blog/base.html" %}
{% load typogrify %}

{% block content %}
    <div id="blog-list">
        {% for entry in entries %}
            <div class="blog-list-entry">
                <h2 class="blog-list-entry-title">
                    <a href="{% url blog-entry entry.pub_date.year, entry.pub_date.month, entry.pub_date.day, entry.slug %}">
                        {{ entry.title|typogrify }}
                    </a>
                </h2>
                <p class="blog-list-entry-snip">{{ entry.snip|typogrify }}</p>
            </div>
        {% endfor %}
        
        {% ifnotequal newer_page older_page  %}
            <div id="blog-list-nav" class="blog-list-entry">
            {% ifnotequal newer_page None %}
                {% ifequal newer_page 0 %}
                    {% url blog-list-newest as new_page %}
                {% else %}
                    {% url blog-list-page newer_page as new_page %}
                {% endifequal %}
                
                <h2 id="blog-list-newer"><a href="{{ new_page }}">
                    Newer &raquo;
                </a></h2>
            {% endifnotequal %}
            {% ifnotequal older_page None %}
                <h2 id="blog-list-older">
                    <a href="{% url blog-list-page older_page %}">
                        &laquo; Older
                    </a>
                </h2>
            {% else %}
                <h2 id="blog-list-older">&nbsp;</h2>
            {% endifnotequal %}
            </div>
        {% endifnotequal %}
    </div>
{% endblock %}