blob: e33317d5306fea5517ee34766f10ee462e0067c9 [file] [log] [blame]
{% extends "base.html" %}
{% block head %}
<meta name="keywords" content="{{ article.tags|join(', ') }}">
{% endblock %}
{% block title %}{{ article.title }}{% endblock %}
{% block header %}
<p>Posted on {{ article.locale_date }}</p>
{% endblock %}
{% block content %}
<article>
<div id="article_title">
<h3><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark">{{ article.title }}</a></h3>
</div>
<div id="article_text">
{{ article.content }}
</div>
<div id="article_meta">
<p>Category: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a></p>
{% if article.tags %}
<p>Tags:
{% for tag in article.tags %}
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>{% if not loop.last %},{% endif %}
{% endfor %}
</p>
{% endif %}
</div>
</article>
{% endblock %}
{% block footer %}
<p><a href="{{ SITEURL }}/" class="button_accent">&larr; Back to Index</a></p>
{% endblock %}