From d839f76685fcd5441a0e54c91b849f2404c8e4da Mon Sep 17 00:00:00 2001 From: Jan Mùˆller Date: Fri, 22 Nov 2013 00:56:23 +0100 Subject: jquery: protocol-independent url, minified version --- pelican-bootstrap3/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pelican-bootstrap3/templates/base.html') diff --git a/pelican-bootstrap3/templates/base.html b/pelican-bootstrap3/templates/base.html index ab505eb..0777948 100644 --- a/pelican-bootstrap3/templates/base.html +++ b/pelican-bootstrap3/templates/base.html @@ -50,7 +50,7 @@ - + {% if FEED_ALL_ATOM %} Date: Thu, 12 Dec 2013 20:47:35 +0800 Subject: html escape fixed make sure description which contain html work right make pygment css only work in highlight class --- pelican-bootstrap3/templates/base.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pelican-bootstrap3/templates/base.html') diff --git a/pelican-bootstrap3/templates/base.html b/pelican-bootstrap3/templates/base.html index 0777948..aea298d 100644 --- a/pelican-bootstrap3/templates/base.html +++ b/pelican-bootstrap3/templates/base.html @@ -22,7 +22,7 @@ - + {% elif page %} @@ -120,4 +120,4 @@ {% include 'includes/disqus_script.html' %} - \ No newline at end of file + -- cgit From f02333f6e1ad4da0a36d880037168e3eb0621c84 Mon Sep 17 00:00:00 2001 From: Daan Debie Date: Fri, 27 Dec 2013 22:58:14 +0100 Subject: Updated pelican-bootstrap3 to v1.1 --- pelican-bootstrap3/templates/base.html | 48 +++++++++++++++++++++++++++------- 1 file changed, 39 insertions(+), 9 deletions(-) (limited to 'pelican-bootstrap3/templates/base.html') diff --git a/pelican-bootstrap3/templates/base.html b/pelican-bootstrap3/templates/base.html index aea298d..580db39 100644 --- a/pelican-bootstrap3/templates/base.html +++ b/pelican-bootstrap3/templates/base.html @@ -20,9 +20,9 @@ {% endif %} {% if article %} - + - + {% elif page %} @@ -46,11 +46,16 @@ {% endif %} - + {% if DOCUTIL_CSS %} + + {% endif %} + {% if TYPOGRIFY %} + + {% endif %} - + {% if FEED_ALL_ATOM %} {{ title }} {% endfor %} {% if DISPLAY_PAGES_ON_MENU %} - {% for page in PAGES %} -
  • {{ page.title }}
  • - {% endfor %} + {% for p in PAGES %} + + {{ p.title }} + + {% endfor %} {% endif %} {% if DISPLAY_CATEGORIES_ON_MENU %} {% for cat, null in categories %}
  • - {{ cat }} + {{ cat | capitalize }}
  • {% endfor %} {% endif %} @@ -112,6 +119,7 @@ +{% include 'includes/footer.html' %} @@ -119,5 +127,27 @@ {% include 'includes/disqus_script.html' %} + +{% if PIWIK_SITE_ID and PIWIK_URL %} + {% if PIWIK_SSL_URL is not defined %} + {% set PIWIK_SSL_URL = PIWIK_URL %} + {% endif %} + + + +{% endif %} + -- cgit From fd1a4eaba46c1def74bd6905bce15c61bb326ed5 Mon Sep 17 00:00:00 2001 From: Daan Debie Date: Mon, 27 Jan 2014 23:38:37 +0100 Subject: Updated pelican-bootstrap to v1.2 --- pelican-bootstrap3/templates/base.html | 80 +++++++++++++++++----------------- 1 file changed, 41 insertions(+), 39 deletions(-) (limited to 'pelican-bootstrap3/templates/base.html') diff --git a/pelican-bootstrap3/templates/base.html b/pelican-bootstrap3/templates/base.html index 580db39..9be2ecb 100644 --- a/pelican-bootstrap3/templates/base.html +++ b/pelican-bootstrap3/templates/base.html @@ -8,13 +8,17 @@ + + {% if FAVICON %} + + {% endif %} - + {# Open Graph tags #} {% if USE_OPEN_GRAPH is not defined %} {% set USE_OPEN_GRAPH = True %} {% endif %} - {% if USE_OPEN_GRAPH %} + {% if OPEN_GRAPH_FB_APP_ID %} {% endif %} @@ -35,10 +39,10 @@ {% if OPEN_GRAPH_IMAGE %} + {% endif %} {% endif %} - {% endif %} - {% endif %} + {% if BOOTSTRAP_THEME %} @@ -46,7 +50,8 @@ {% endif %} - + + {% if DOCUTIL_CSS %} {% endif %} @@ -54,8 +59,9 @@ {% endif %} - - + {% if CUSTOM_CSS %} + + {% endif %} {% if FEED_ALL_ATOM %} {% endif %} - {% include 'includes/ga.html' %} - - + +
    -
    - {% block content %} - {% endblock %} + {% if not HIDE_SIDEBAR %} +
    + {% else %} +
    + {% endif %} + {% block breadcrumbs %} + {% endblock %} + + {% block content %} + {% endblock %}
    -
    {% include 'includes/footer.html' %} + + -{% include 'includes/disqus_script.html' %} - -{% if PIWIK_SITE_ID and PIWIK_URL %} - {% if PIWIK_SSL_URL is not defined %} - {% set PIWIK_SSL_URL = PIWIK_URL %} - {% endif %} - - - -{% endif %} +{% include 'includes/github-js.html' %} +{% include 'includes/disqus_script.html' %} +{% include 'includes/ga.html' %} +{% include 'includes/piwik.html' %} -- cgit From 7abcee90cd67da45162d8254962c42ad2d44a687 Mon Sep 17 00:00:00 2001 From: Stephen McQuay Date: Mon, 31 Mar 2014 00:21:03 -0700 Subject: Load remote jquery securely (if needed) --- pelican-bootstrap3/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pelican-bootstrap3/templates/base.html') diff --git a/pelican-bootstrap3/templates/base.html b/pelican-bootstrap3/templates/base.html index 9be2ecb..bfbaa62 100644 --- a/pelican-bootstrap3/templates/base.html +++ b/pelican-bootstrap3/templates/base.html @@ -139,7 +139,7 @@
    {% include 'includes/footer.html' %} - + -- cgit