aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/tag.html
diff options
context:
space:
mode:
Diffstat (limited to 'pelican-bootstrap3/templates/tag.html')
-rw-r--r--pelican-bootstrap3/templates/tag.html11
1 files changed, 10 insertions, 1 deletions
diff --git a/pelican-bootstrap3/templates/tag.html b/pelican-bootstrap3/templates/tag.html
index 68cdcba..9895705 100644
--- a/pelican-bootstrap3/templates/tag.html
+++ b/pelican-bootstrap3/templates/tag.html
@@ -1,2 +1,11 @@
{% extends "index.html" %}
-{% block title %}{{ SITENAME }} - {{ tag }}{% 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 }}/{{ TAGS_URL }}" title="Tags">Tags</a></li>
+ <li class="active">{{ tag }}</li>
+ </ol>
+ {% endif %}
+{% endblock %}
+{% block title %}{{ tag }} - {{ SITENAME }}{% endblock %}