Files
i2p.www/i2p2www/pages/blog/entry.html
str4d 9a81261190 Rework of blog
- Added support for metadata in blog entries
- Modified blog/index.html and blog/entry.html templates to use metadata
- Migrated the most recent post over to just a .rst file and added metadata
2013-01-08 01:33:22 +00:00

13 lines
338 B
HTML

{% extends "global/layout.html" %}
{% block title %}{{ title }} - Blog{% endblock %}
{% block content %}
<ul id="blog-entry-info">
<li class="date">{{ meta.date }}</li>
<li class="author">{{ meta.author }}</li>
<li class="category">{{ meta.category }}</li>
</ul>
{% autoescape false %}
{{ body }}
{% endautoescape %}
{% endblock %}