templates/thoughts/list.html @ 20596cd84983
Changed the styling of h3's on the site.
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Thu, 15 Jan 2009 22:08:45 -0500 |
| parents | cc77ca937643 |
| children | 09b70d37fb65 |
{% extends "base.html" %} {% load markup %} {% block title %}Thoughts{% endblock %} {% block style %} <link rel="stylesheet" href="/site-media/style/thoughts.css" type="text/css"/> {% endblock %} {% block header %}/ thoughts{% endblock %} {% block content %} <div id="thoughts-list"> {% for thought in thoughts %} <div class="thought"> {% ifequal thought.type 'text' %} <a name="text-{{ thought.id }}"></a> <div class="thought-type span-2"> <h2>text</h2> </div> <div class="thought-content text-thought colborder-left span-14 last"> {% ifnotequal thought.title None %} <h2>{{ thought.title }}</h2> {% endifnotequal %} {{ thought.body|markdown:"safe" }} </div> {% endifequal %} {% ifequal thought.type 'link' %} <a name="link-{{ thought.id }}"></a> <div class="thought-type span-2"> <h2>link</h2> </div> <div class="thought-content link-thought colborder-left span-14 last"> <h2><a href="{{ thought.url }}"> {% if thought.name %} {{ thought.name }} {% else %} {{ thought.url }} {% endif %} </a></h2> {% if thought.description %} {{ thought.description|markdown:"safe" }} {% endif %} </div> {% endifequal %} </div> {% endfor %} {% ifnotequal newer_page older_page %} <div class="thought thought-navigation"> {% ifnotequal newer_page None %} {% ifequal newer_page 0 %} {% url thoughts-list-newest as new_page %} {% else %} {% url thoughts-list-page newer_page as new_page %} {% endifequal %} <span id="thought-list-newer"> <h2><a href="{{ new_page }}"> Newer » </a></h2> </span> {% endifnotequal %} {% ifnotequal older_page None %} <span id="thought-list-older"> <h2><a href="{% url thoughts-list-page older_page %}"> « Older </a></h2> </span> {% else %} <span id="thought-list-older"> <h2> </h2> </span> {% endifnotequal %} </div> {% endifnotequal %} </div> {% endblock %}