2012-09-12 17:21:37 +00:00
|
|
|
{% extends "global/layout.html" %}
|
2013-02-03 01:40:47 +00:00
|
|
|
{%- from "global/macros" import render_categories with context -%}
|
2013-01-18 04:36:24 +00:00
|
|
|
{% block title %}{{ title }} - {{ _('Blog') }}{% endblock %}
|
2012-09-12 17:21:37 +00:00
|
|
|
{% block content %}
|
2013-06-09 22:21:09 +00:00
|
|
|
<ul id="post-info" class="lastupdated">
|
2013-06-09 23:25:52 +00:00
|
|
|
<li class="date">{{ _('Posted:') }} {{ meta.date }}</li>
|
|
|
|
<li class="author">{{ _('Author:') }} {{ meta.author }}</li>
|
2013-02-03 01:40:47 +00:00
|
|
|
<li class="category">{{ render_categories(meta.category)|safe }}</li>
|
2013-01-08 01:33:22 +00:00
|
|
|
</ul>
|
2012-09-12 17:21:37 +00:00
|
|
|
{% autoescape false %}
|
|
|
|
{{ body }}
|
|
|
|
{% endautoescape %}
|
2013-12-08 21:25:13 +00:00
|
|
|
|
|
|
|
<p>
|
2014-02-16 00:23:00 +00:00
|
|
|
<a href="https://flattr.com/submit/auto?user_id=I2P&url={{ canonical() }}" target="_blank">
|
|
|
|
<img src="{{ url_for('static', filename='images/flattr-badge-large.png') }}" alt="Flattr this" title="Flattr this" border="0">
|
|
|
|
</a>
|
2013-12-08 21:25:13 +00:00
|
|
|
</p>
|
2012-09-12 17:21:37 +00:00
|
|
|
{% endblock %}
|