templates/messengerbag/note_detail.html @ 0a73822701d9

Update the MB templates.
author Steve Losh <steve@stevelosh.com>
date Thu, 26 Mar 2009 20:43:23 -0400
parents 1ce04db85761
children ed9aff132907
{% extends "messengerbag/base.html" %}
{% load typogrify %}
{% load markup %}

{% block title %}{{ note.title }}{% endblock %}

{% block content %}
    <h1><a href="{{ note.get_absolute_url }}">{{ note.title|typogrify }}</a></h1>
    <p id="mb-navigation"><a href="{% url note-list %}">&laquo; back to your notes</a></p>
    <div id="mb-rendered-note">
        {{ note.body|markdown:"codehilite"|typogrify }}
    </div>
{% endblock %}