Files
i2p.www/i2p2www/pages/blog/post.html

20 lines
726 B
HTML
Raw Normal View History

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 -%}
{% block title %}{{ title }} - {{ _('Blog') }}{% endblock %}
2012-09-12 17:21:37 +00:00
{% block content %}
<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>
</ul>
2012-09-12 17:21:37 +00:00
{% autoescape false %}
{{ body }}
{% endautoescape %}
2013-12-08 21:25:13 +00:00
<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>
2013-12-08 21:25:13 +00:00
</p>
2012-09-12 17:21:37 +00:00
{% endblock %}