layout/_post.html @ 9bd11f5c9786

Add Disqus comments.

I'll deal with the train wreck that is Disqus' layout/typography later.
author Steve Losh <steve@stevelosh.com>
date Sat, 09 Jan 2010 03:31:55 -0500
parents 3e6549916647
children 597b7684e378
{% extends "skeleton/_base.html" %}

{% block content %}
    <div id="leaf-title">
        <h1><a href="{{ page.url }}">{{ page.title|safe|typogrify }}</a></h1>
    </div>
    
    <div id="leaf-stats"><p>Posted on {{ page.created|date:"l, F j, Y" }} ({{ page.created|timesince }} ago).</p></div>
    
    <div id="leaf-content">
        {% filter typogrify %}
            {% article %}
                {% filter typogrify %}
                    {% markdown toc def_list %}
                        {% block article %}{% endblock %}
                    {% endmarkdown %}
                {% endfilter %}
            {% endarticle %}
        {% endfilter %}
    </div>
    
    <h1 id="comment-header">Comments</h1>
    
    <div id="disqus_thread"></div>
    <script type="text/javascript" src="http://disqus.com/forums/stevelosh/embed.js"></script>
    <noscript>
        <a href="http://disqus.com/forums/stevelosh/?url=ref">View the discussion thread.</a>
    </noscript>
    <a href="http://disqus.com" class="dsq-brlink">
        comments powered by
        <span class="logo-disqus">Disqus</span>
    </a>
{% endblock %}