
- 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
13 lines
338 B
HTML
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 %}
|