From 3f875b51644b2fa26110b2c307f43832386e9ed2 Mon Sep 17 00:00:00 2001 From: Leonardo Giordani Date: Sun, 2 Nov 2014 23:44:44 +0100 Subject: Added support for series plugin --- .../templates/includes/article_info.html | 9 ++++++++ pelican-bootstrap3/templates/includes/series.html | 22 ++++++++++++++++++++ pelican-bootstrap3/templates/includes/sidebar.html | 24 ++++++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 pelican-bootstrap3/templates/includes/series.html (limited to 'pelican-bootstrap3/templates/includes') diff --git a/pelican-bootstrap3/templates/includes/article_info.html b/pelican-bootstrap3/templates/includes/article_info.html index f13f4d1..787c360 100644 --- a/pelican-bootstrap3/templates/includes/article_info.html +++ b/pelican-bootstrap3/templates/includes/article_info.html @@ -3,6 +3,15 @@ + + {% if SHOW_SERIES %} + {% if article.series %} + Series + Part {{ article.series.index}} of {{ article.series.name }} + {% endif %} + {% endif %} + + {% if SHOW_ARTICLE_AUTHOR %} {% if article.author %} By diff --git a/pelican-bootstrap3/templates/includes/series.html b/pelican-bootstrap3/templates/includes/series.html new file mode 100644 index 0000000..24729a2 --- /dev/null +++ b/pelican-bootstrap3/templates/includes/series.html @@ -0,0 +1,22 @@ +{% if article.series %} + +{% endif %} diff --git a/pelican-bootstrap3/templates/includes/sidebar.html b/pelican-bootstrap3/templates/includes/sidebar.html index ef6768b..35811f6 100644 --- a/pelican-bootstrap3/templates/includes/sidebar.html +++ b/pelican-bootstrap3/templates/includes/sidebar.html @@ -70,6 +70,30 @@ {% endif %} + + {% if DISPLAY_SERIES_ON_SIDEBAR %} + {% if article %} + {% if article.series %} +
  • Series

    + +
  • + {% endif%} + {% endif %} + {% endif %} + {% include 'includes/github.html' %} {% include 'includes/twitter_timeline.html' %} {% include 'includes/links.html' %} -- cgit