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 From f3060b4474f6364537b500713c4883ddf4002d9e Mon Sep 17 00:00:00 2001 From: Alexander Jung-Loddenkemper Date: Sun, 18 Mar 2012 20:04:02 +0100 Subject: merged analytics and changes to make bootlex xhtml strict --- bootlex/templates/article.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bootlex/templates/article.html') diff --git a/bootlex/templates/article.html b/bootlex/templates/article.html index a407af8..5a533fe 100644 --- a/bootlex/templates/article.html +++ b/bootlex/templates/article.html @@ -3,9 +3,9 @@ {% block content %}
-

{{ article.title }}

+

{{ 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 %}

+

{% 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 }}
-- cgit From 7dc4d494bd4a5dc5f81a0d2819bdedbcba4367b5 Mon Sep 17 00:00:00 2001 From: Alexander Jung-Loddenkemper Date: Wed, 28 Mar 2012 00:37:26 +0200 Subject: a bunch of bootlex fixes. --- bootlex/templates/article.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bootlex/templates/article.html') diff --git a/bootlex/templates/article.html b/bootlex/templates/article.html index 5a533fe..18ba9a3 100644 --- a/bootlex/templates/article.html +++ b/bootlex/templates/article.html @@ -5,7 +5,7 @@

{{ 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 %}

+

{% 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 }}
-- cgit