templates/messengerbag/note_detail.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 %}
{% load markup %}

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

{% block content %}
    <h1>{{ note.title|typogrify }}</h1>
    <div id="mb-rendered-note">
        {{ note.body|markdown:"codehilite"|typogrify }}
    </div>
{% endblock %}