diff options
author | Justin Mayer <entroP@gmail.com> | 2016-12-13 08:35:37 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-13 08:35:37 -0800 |
commit | ca26088a0031b4516b2953a097953ae3085362fd (patch) | |
tree | 3499979c5bd442fbac01a822eb51735a968ea5f3 /pelican-bootstrap3/templates | |
parent | e351c04203887ea069621ba751d6194d854b9b0f (diff) | |
parent | b7cd9bd0bf35cf17e7506ddb8f73b6c25c62ce6b (diff) | |
download | pelican-themes-ca26088a0031b4516b2953a097953ae3085362fd.tar.gz |
Merge pull request #450 from chrisramsay/fix/series-display-sidebar
pelican-bootstrap3: Hide empty <li> tags when at either end of a series
Diffstat (limited to 'pelican-bootstrap3/templates')
-rw-r--r-- | pelican-bootstrap3/templates/includes/sidebar.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/pelican-bootstrap3/templates/includes/sidebar.html b/pelican-bootstrap3/templates/includes/sidebar.html index 2698338..4d7e6bb 100644 --- a/pelican-bootstrap3/templates/includes/sidebar.html +++ b/pelican-bootstrap3/templates/includes/sidebar.html @@ -79,18 +79,18 @@ {% if article.series %} <li class="list-group-item"><h4><i class="fa fa-tags fa-list-ul"></i><span class="icon-label">Series</span></h4> <ul class="list-group"> - <li class="list-group-item"> {% if article.series.previous %} + <li class="list-group-item"> <h5></i> Previous article</h5> <a href="{{ SITEURL }}/{{ article.series.previous.url }}">{{ article.series.previous.title }}</a> - {% endif %} </li> - <li class="list-group-item"> + {% endif %} {% if article.series.next %} + <li class="list-group-item"> <h5>Next article</h5> <a href="{{ SITEURL }}/{{ article.series.next.url }}">{{ article.series.next.title }}</a> - {% endif %} </li> + {% endif %} </ul> </li> {% endif%} @@ -103,4 +103,3 @@ {% include 'includes/sidebar-images.html' %} </ul> </section> - |