diff options
author | Justin Mayer <entroP@gmail.com> | 2016-12-13 10:33:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-13 10:33:27 -0800 |
commit | b6ab2ad418b634eda366026855be0574703281d7 (patch) | |
tree | 218cfce1037c099a650cbb382b69d50de681f5e8 /pelican-bootstrap3/templates/categories.html | |
parent | 30c807519db25e1c9246a6c53b7545b36a2f1895 (diff) | |
parent | db5388e47885b76083ee6a169863b5e718ca1246 (diff) | |
download | pelican-themes-b6ab2ad418b634eda366026855be0574703281d7.tar.gz |
Merge pull request #441 from jranke/i18n
Make pelican-bootstrap3 multilingual
Diffstat (limited to 'pelican-bootstrap3/templates/categories.html')
-rw-r--r-- | pelican-bootstrap3/templates/categories.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pelican-bootstrap3/templates/categories.html b/pelican-bootstrap3/templates/categories.html index 6898f97..6f3e8f5 100644 --- a/pelican-bootstrap3/templates/categories.html +++ b/pelican-bootstrap3/templates/categories.html @@ -1,18 +1,18 @@ {% extends "base.html" %} -{% block title %}Categories - {{ SITENAME }}{% endblock %} +{% block title %}{{ _('Categories') }} - {{ 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 class="active">Categories</li> + <li class="active">{{ _('Categories') }}</li> </ol> {% endif %} {% endblock %} {% block content %} <section id="categories"> - <h1>All Categories for {{ SITENAME }}</h1> + <h1>{{ _('All Categories for') }} {{ SITENAME }}</h1> <div class="panel-group" id="accordion"> {% for category, articles in categories %} <div class="panel panel-default"> |