aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/category.html
diff options
context:
space:
mode:
Diffstat (limited to 'pelican-bootstrap3/templates/category.html')
-rw-r--r--pelican-bootstrap3/templates/category.html11
1 files changed, 10 insertions, 1 deletions
diff --git a/pelican-bootstrap3/templates/category.html b/pelican-bootstrap3/templates/category.html
index 56f8e93..9cfa5ad 100644
--- a/pelican-bootstrap3/templates/category.html
+++ b/pelican-bootstrap3/templates/category.html
@@ -1,2 +1,11 @@
{% extends "index.html" %}
-{% block title %}{{ SITENAME }} - {{ category }}{% endblock %}
+{% block title %}{{ category }} - {{ SITENAME }}{% endblock %}
+{% block breadcrumbs %}
+ {% if DISPLAY_BREADCRUMBS %}
+ <ol class="breadcrumb">
+ <li><a href="{{ SITEURL }}" title="{{ SITENAME }}"><i class="fa fa-home fa-lg"></i></a></li>
+ <li><a href="{{ SITEURL}}/{{ CATEGORIES_URL }}" title="{{ SITENAME }} Categories">Categories</a></li>
+ <li class="active">{{ category }}</li>
+ </ol>
+ {% endif %}
+{% endblock %}