layout/_flatpage.html @ 24ade3f9c58c

Add the LessCSS processor and rename base.css
author Steve Losh <steve@stevelosh.com>
date Tue, 02 Feb 2010 22:36:12 -0500
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 %}