templates/entry.html @ 7d7b1c625d52
jilcrow
Moar.
author |
Steve Losh <steve@stevelosh.com> |
date |
Tue, 30 Nov 2010 19:06:42 -0500 |
parents |
(none) |
children |
(none) |
{% extends "base.html" %}
{% block extra_css %}
<link rel="stylesheet"
href="{{ root }}media/css/pygments-monokai-light.css"
type="text/css" media="screen" charset="utf-8" />
{% endblock %}
{% block content %}
<div id="leaf-title">
<h1><a href="{{ url }}">{{ title }}</a></h1>
</div>
<div id="leaf-stats" class="group">
{% if flattr %}
<div class="flattr">
<a class="FlattrButton" style="display:none;" rev="flattr;button:compact;"
href="http://stevelosh.com{{ url }}"></a>
</div>
{% endif %}
<p>
Posted
<span class="timeago"
title="{{ date }}T{{ date }}">
FIXME
</span>
on FIXME.
</p>
</div>
<div id="leaf-content" class="{% block article_class %}{% endblock %}">
{{ content }}
</div>
{% endblock %}