Files
I2P_Website/i2p2www/pages/blog/post.html

23 lines
746 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 %}
{% block content %}
{% if meta.category and 'summer-dev' in meta.category %}
<div id="blog-topimg">
<img src="{{ url_for('static', filename='images/I2PSummerDev-Primary.svg') }}" alt="I2P Summer Dev" title="I2P Summer Dev">
</div>
{% endif %}
<div class="meta">
<ul id="post-info">
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>
</div>
2019-07-29 19:09:51 +00:00
<div id="post">
2012-09-12 17:21:37 +00:00
{% autoescape false %}
{{ body }}
{% endautoescape %}
2019-07-29 19:09:51 +00:00
</div>
2012-09-12 17:21:37 +00:00
{% endblock %}