diff options
Diffstat (limited to 'pelican-bootstrap3/templates/category.html')
-rw-r--r-- | pelican-bootstrap3/templates/category.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pelican-bootstrap3/templates/category.html b/pelican-bootstrap3/templates/category.html new file mode 100644 index 0000000..9cfa5ad --- /dev/null +++ b/pelican-bootstrap3/templates/category.html @@ -0,0 +1,11 @@ +{% extends "index.html" %} +{% 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 %} |