layout/_post.html @ cf38a58b1927

Add the rest of the blog entries.
author Steve Losh <steve@stevelosh.com>
date Wed, 23 Dec 2009 20:24:31 -0500
parents 21310ac1ce15
children 1f5a661bd38b
{% extends "skeleton/_base.html" %}

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