templates/messengerbag/note_list.html @ 7e2a0c0282b3

Really, Firefox?  I actually have to tell you to inherit the font-weight for a *div*?
author Steve Losh <steve@stevelosh.com>
date Thu, 19 Mar 2009 20:53:53 -0400
parents 1ce04db85761
children 0a73822701d9
{% extends "messengerbag/base.html" %}
{% load typogrify %}

{% block title %}Messenger Bag{% endblock %}

{% block content %}
    <h1>Notebook</h1>
    <p id="mb-note-list">
        {% for note in note_list %}
            <span class="mb-note-list-title">
                <a href="{{ note.get_absolute_url }}">{{ note.title|typogrify }}</a>
            </span>
            <span class="mb-note-list-snip">{{ note.snippet|typogrify }}</span>
            <br/>
        {% endfor %}
    </p>
{% endblock %}