blob: 6abe2e627ed8f42a0de59d9151961091bb1cf201 [file] [log] [blame]
Giulio Fidente44ccac72013-03-21 18:51:03 +01001{% extends "base.html" %}
2{% block content %}
3{% set custom_header = "Posted on " + article.locale_date %}
4{% include "header.html" %}
5<article>
6 <h1 id="title">
7 <a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a>
8 </h1>
9
10 <div id="article_content">
11 {{ article.content }}
12 </div>
13
14 <div id="article_meta">
15 Category: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a><br />
16 {% if article.tags %}
17 Tags:
18 {% for tag in article.tags %}
19 <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
20 {% endfor %}
21 {% endif %}
22 </div>
23</article>
24
25<footer>
26 <a href="{{ SITEURL }}/" class="button_accent">&larr;Back to blog</a>
27</footer>
28{% endblock %}