layout/_post.html @ 8a15a71f3376

Adjust more styles (code blocks).
author Steve Losh <steve@stevelosh.com>
date Wed, 23 Dec 2009 21:13:20 -0500
parents cf38a58b1927
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 %}