2010-08-17 20:28:51 +02:00
|
|
|
{% extends "base.html" %}
|
2013-08-21 22:58:50 -04:00
|
|
|
{% block head %}
|
2013-10-10 14:29:42 +13:00
|
|
|
{{ super() }}
|
2015-08-11 20:03:43 +01:00
|
|
|
{% if article.description %}
|
|
|
|
|
<meta name="description" content="{{article.description}}" />
|
|
|
|
|
{% endif %}
|
2013-08-24 23:36:07 -04:00
|
|
|
|
|
|
|
|
{% for tag in article.tags %}
|
2015-04-08 03:32:48 +02:00
|
|
|
<meta name="tags" content="{{tag}}" />
|
2013-08-24 23:36:07 -04:00
|
|
|
{% endfor %}
|
|
|
|
|
|
2013-08-21 22:58:50 -04:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2012-05-07 12:26:17 +02:00
|
|
|
{% block content %}
|
|
|
|
|
<section id="content" class="body">
|
|
|
|
|
<header>
|
|
|
|
|
<h2 class="entry-title">
|
2013-03-21 11:28:06 +00:00
|
|
|
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
|
2012-05-07 12:26:17 +02:00
|
|
|
title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2>
|
2012-11-21 14:41:09 +02:00
|
|
|
{% import 'translations.html' as translations with context %}
|
|
|
|
|
{{ translations.translations_for(article) }}
|
2012-05-07 12:26:17 +02:00
|
|
|
</header>
|
|
|
|
|
<footer class="post-info">
|
|
|
|
|
<abbr class="published" title="{{ article.date.isoformat() }}">
|
|
|
|
|
{{ article.locale_date }}
|
|
|
|
|
</abbr>
|
2013-11-17 23:40:11 +01:00
|
|
|
{% if article.modified %}
|
2013-11-05 19:38:58 +01:00
|
|
|
<abbr class="modified" title="{{ article.modified.isoformat() }}">
|
|
|
|
|
{{ article.locale_modified }}
|
|
|
|
|
</abbr>
|
|
|
|
|
{% endif %}
|
2013-07-05 01:08:45 +02:00
|
|
|
{% if article.authors %}
|
2012-05-07 12:26:17 +02:00
|
|
|
<address class="vcard author">
|
2013-07-05 01:08:45 +02:00
|
|
|
By {% for author in article.authors %}
|
|
|
|
|
<a class="url fn" href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
|
|
|
|
|
{% endfor %}
|
2012-05-07 12:26:17 +02:00
|
|
|
</address>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</footer><!-- /.post-info -->
|
|
|
|
|
<div class="entry-content">
|
|
|
|
|
{{ article.content }}
|
|
|
|
|
</div><!-- /.entry-content -->
|
2010-08-17 20:28:51 +02:00
|
|
|
</section>
|
|
|
|
|
{% endblock %}
|