layout/_flatpage.html @ 07a50b67d5cd

A couple of updates to the Django entry.
author Steve Losh <steve@stevelosh.com>
date Thu, 30 Jun 2011 09:26:21 -0400
parents aef920f3a570
children (none)
{% extends "skeleton/_base.html" %}

{% block content %}
    <div id="leaf-title"><h1>{{ page.title|safe|typogrify }}</h1></div>
    
    <div id="leaf-content">
        {% filter typogrify %}
            {% markdown toc def_list %}
                {% block article %}{% endblock %}
            {% endmarkdown %}
        {% endfilter %}
    </div>
{% endblock %}