From e6f3c75122c344a39953c551e1fe480222b23390 Mon Sep 17 00:00:00 2001 From: Alexander Jung-Loddenkemper Date: Sun, 18 Mar 2012 14:52:34 +0100 Subject: added bootlex theme. --- bootlex/templates/article.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bootlex/templates/article.html (limited to 'bootlex/templates/article.html') diff --git a/bootlex/templates/article.html b/bootlex/templates/article.html new file mode 100644 index 0000000..a407af8 --- /dev/null +++ b/bootlex/templates/article.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} +{% block title %}{{ article.title }}{%endblock%} +{% block content %} +
+
+

{{ article.title }}

+
+

{% if article.author %}{{ article.author }} - {% endif %}{{ article.locale_date }} - {% if article.tags %}{% for tag in article.tags %}{{ tag }}{% if not loop.last %}, {% endif %}{% endfor %}{% endif %}

+
+ {{ article.content }} +
+
+{% endblock %} -- cgit