layout/_post.html @ 21310ac1ce15

Fix the article comment tag issue.
author Steve Losh <steve@stevelosh.com>
date Wed, 23 Dec 2009 19:18:48 -0500
parents 0b9e27b26ffa
children cf38a58b1927
{% extends "skeleton/_base.html" %}

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