2010-08-17 20:28:51 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block content %}
|
|
|
|
|
<section id="content" class="body">
|
2011-08-03 22:11:16 +02:00
|
|
|
<header> <h2 class="entry-title"><a href="{{ pagename }}" rel="bookmark" title="Permalink to {{ article.title}}">{{ article.title }}</a></h2> </header>
|
2010-08-17 20:28:51 +02:00
|
|
|
<footer class="post-info">
|
|
|
|
|
<abbr class="published" title="{{ article.date.isoformat() }}">
|
2011-02-01 21:44:50 +00:00
|
|
|
{{ article.locale_date }}
|
2010-08-17 20:28:51 +02:00
|
|
|
</abbr>
|
|
|
|
|
{% if article.author %}
|
|
|
|
|
<address class="vcard author">
|
2011-12-22 16:22:34 +00:00
|
|
|
By <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
|
2010-08-17 20:28:51 +02:00
|
|
|
</address>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</footer><!-- /.post-info -->
|
|
|
|
|
<div class="entry-content">
|
|
|
|
|
{{ article.content }}
|
|
|
|
|
</div><!-- /.entry-content -->
|
|
|
|
|
</section>
|
|
|
|
|
{% endblock %}
|