Giulio Fidente | 44ccac7 | 2013-03-21 18:51:03 +0100 | [diff] [blame^] | 1 | {% 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">←Back to blog</a> |
| 27 | </footer> |
| 28 | {% endblock %} |