20 lines
726 B
HTML
20 lines
726 B
HTML
{% extends "global/layout.html" %}
|
|
{%- from "global/macros" import render_categories with context -%}
|
|
{% block title %}{{ title }} - {{ _('Blog') }}{% endblock %}
|
|
{% block content %}
|
|
<ul id="post-info" class="lastupdated">
|
|
<li class="date">{{ _('Posted:') }} {{ meta.date }}</li>
|
|
<li class="author">{{ _('Author:') }} {{ meta.author }}</li>
|
|
<li class="category">{{ render_categories(meta.category)|safe }}</li>
|
|
</ul>
|
|
{% autoescape false %}
|
|
{{ body }}
|
|
{% endautoescape %}
|
|
|
|
<p>
|
|
<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>
|
|
</p>
|
|
{% endblock %}
|