From 765b1de1819ac0558dc5d87bbbe0dec6027fbcaf Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Sun, 17 Mar 2013 19:49:13 +0200 Subject: remove redundant hyperlink The blog title already takes one home... /index.html --- notmyidea-cms/templates/base.html | 1 - 1 file changed, 1 deletion(-) (limited to 'notmyidea-cms') diff --git a/notmyidea-cms/templates/base.html b/notmyidea-cms/templates/base.html index 3ec41e1..ffbf352 100644 --- a/notmyidea-cms/templates/base.html +++ b/notmyidea-cms/templates/base.html @@ -31,7 +31,6 @@
  • {{ title }}
  • {% endfor %} {% if DISPLAY_PAGES_ON_MENU != False %} -
  • Home
  • {% for p in PAGES %}
  • {{ p.title }}
  • {% endfor %} -- cgit From 0efe4aa89df5698e77f5f1ea412a93cf1d891cf6 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Sun, 17 Mar 2013 19:49:32 +0200 Subject: make Archives visible --- notmyidea-cms/templates/base.html | 1 + 1 file changed, 1 insertion(+) (limited to 'notmyidea-cms') diff --git a/notmyidea-cms/templates/base.html b/notmyidea-cms/templates/base.html index ffbf352..c2535d2 100644 --- a/notmyidea-cms/templates/base.html +++ b/notmyidea-cms/templates/base.html @@ -35,6 +35,7 @@
  • {{ p.title }}
  • {% endfor %} {% endif %} +
  • Archives
  • {#{% for cat, null in categories %}
  • {{ cat }}
  • {% endfor %}#} -- cgit From e47753e48c5eafcf1bb4c363fb83c61e4771fc71 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Sun, 17 Mar 2013 19:53:00 +0200 Subject: honor global date style --- notmyidea-cms/templates/archives.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'notmyidea-cms') diff --git a/notmyidea-cms/templates/archives.html b/notmyidea-cms/templates/archives.html index 1644aff..5ba2c81 100644 --- a/notmyidea-cms/templates/archives.html +++ b/notmyidea-cms/templates/archives.html @@ -5,7 +5,7 @@
    {% for article in dates %} -
    {{ article.date.strftime('%a %d %B %Y') }}
    +
    {{ article.locale_date }}
    {{ article.title }}
    {% endfor %}
    -- cgit