From 7c039820c24f7687498e6d3b88e00ccbd45ac1fa Mon Sep 17 00:00:00 2001 From: dengzhp Date: Thu, 9 Feb 2012 21:05:21 +0800 Subject: added the missing page template for bootstrap theme --- bootstrap/templates/page.html | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 bootstrap/templates/page.html (limited to 'bootstrap/templates') diff --git a/bootstrap/templates/page.html b/bootstrap/templates/page.html new file mode 100644 index 0000000..15015ff --- /dev/null +++ b/bootstrap/templates/page.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} +{% block indextitle %}{% endblock %} +{% block content %} +
+ +
{{ page.content }}
+
+{% endblock %} \ No newline at end of file -- cgit From 6fc7556681eb815a3d1aa07e51ccf85b1fe16eab Mon Sep 17 00:00:00 2001 From: tomatic Date: Tue, 20 Mar 2012 13:40:58 +0100 Subject: Added closing anchor tag. --- bootstrap/templates/tags.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bootstrap/templates') diff --git a/bootstrap/templates/tags.html b/bootstrap/templates/tags.html index 592cd0d..a3b37be 100644 --- a/bootstrap/templates/tags.html +++ b/bootstrap/templates/tags.html @@ -3,7 +3,7 @@ {% block content %} {% endblock %} -- cgit From bf25a8f7c5e634eb245820b09d853ecd0fa57796 Mon Sep 17 00:00:00 2001 From: tomatic Date: Tue, 20 Mar 2012 13:43:23 +0100 Subject: Added missing closing anchor tag --- bootstrap/templates/archives.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bootstrap/templates') diff --git a/bootstrap/templates/archives.html b/bootstrap/templates/archives.html index 2d02e12..6dee8ed 100644 --- a/bootstrap/templates/archives.html +++ b/bootstrap/templates/archives.html @@ -7,7 +7,7 @@

{{ articles[ 0 ].date.strftime( '%B' ) }}

{% endfor %} -- cgit From b9019a93de3397b757c4ee2145cb997e0d770a98 Mon Sep 17 00:00:00 2001 From: tomatic Date: Tue, 20 Mar 2012 13:45:12 +0100 Subject: Added missing closing anchor tag. --- bootstrap/templates/categories.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bootstrap/templates') diff --git a/bootstrap/templates/categories.html b/bootstrap/templates/categories.html index 36b57bc..4500237 100644 --- a/bootstrap/templates/categories.html +++ b/bootstrap/templates/categories.html @@ -3,7 +3,7 @@ {% block content %} {% endblock %} -- cgit From 9c349d82c60d06563e1c1fc52600179f702cebc2 Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Mon, 14 May 2012 18:17:00 +0100 Subject: Use object.url to get the url for author, category and tags --- bootstrap/templates/base.html | 4 ++-- bootstrap/templates/categories.html | 2 +- bootstrap/templates/metadata.html | 6 +++--- bootstrap/templates/tags.html | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) (limited to 'bootstrap/templates') diff --git a/bootstrap/templates/base.html b/bootstrap/templates/base.html index 5710a5e..9458d6e 100644 --- a/bootstrap/templates/base.html +++ b/bootstrap/templates/base.html @@ -35,7 +35,7 @@ {% endfor %} {% endif %} {% for cat, null in categories %} -
  • {{ cat }}
  • +
  • {{ cat }}
  • {% endfor %}

    [archives] [tags]

    @@ -73,4 +73,4 @@ - \ No newline at end of file + diff --git a/bootstrap/templates/categories.html b/bootstrap/templates/categories.html index 4500237..de7cbc3 100644 --- a/bootstrap/templates/categories.html +++ b/bootstrap/templates/categories.html @@ -3,7 +3,7 @@ {% block content %} {% endblock %} diff --git a/bootstrap/templates/metadata.html b/bootstrap/templates/metadata.html index 876df8f..8c9f261 100644 --- a/bootstrap/templates/metadata.html +++ b/bootstrap/templates/metadata.html @@ -1,4 +1,4 @@ Permalink: {{ article.date }} -{% if article.author %}by {{ article.author }}{% endif %} -in {{ article.category }} -{% if article.tags %}tags: {% for tag in article.tags %}{{ tag }} {% endfor %}{% endif %} +{% if article.author %}by {{ article.author }}{% endif %} +in {{ article.category }} +{% if article.tags %}tags: {% for tag in article.tags %}{{ tag }} {% endfor %}{% endif %} diff --git a/bootstrap/templates/tags.html b/bootstrap/templates/tags.html index a3b37be..d481bc3 100644 --- a/bootstrap/templates/tags.html +++ b/bootstrap/templates/tags.html @@ -3,7 +3,7 @@ {% block content %} {% endblock %} -- cgit