diff options
-rw-r--r-- | dev-random/templates/author.html | 2 | ||||
-rw-r--r-- | dev-random/templates/category.html | 2 | ||||
-rw-r--r-- | dev-random/templates/tag.html | 4 |
3 files changed, 5 insertions, 3 deletions
diff --git a/dev-random/templates/author.html b/dev-random/templates/author.html index 165b74d..e323690 100644 --- a/dev-random/templates/author.html +++ b/dev-random/templates/author.html @@ -1,5 +1,5 @@ {% extends "index.html" %} -{% block title %}{{ SITENAME }} — Articles de {{ author }}{% endblock %} +{% block title %}{{ super() }} — Articles de {{ author }}{% endblock %} {% block index_title %}Articles de <i>{{ author }}</i> :{% endblock %} diff --git a/dev-random/templates/category.html b/dev-random/templates/category.html index 6cff639..0a5dade 100644 --- a/dev-random/templates/category.html +++ b/dev-random/templates/category.html @@ -1,5 +1,5 @@ {% extends "index.html" %} -{% block title %}{{ SITENAME }} — Articles dans la catégorie «{{ category }}»{% endblock %} +{% block title %}{{ super() }} — Articles dans la catégorie «{{ category }}»{% endblock %} {% block index_title %}Articles dans la catégorie <i>«{{ category }}»</i> :{% endblock %} diff --git a/dev-random/templates/tag.html b/dev-random/templates/tag.html index 0eb2bab..ca4fc94 100644 --- a/dev-random/templates/tag.html +++ b/dev-random/templates/tag.html @@ -1,4 +1,6 @@ {% extends "index.html" %} -{% block content_title %}Articles avec la mot clé « {{ tag }} » :{% endblock %} +{% block title %}{{ super() }} — Articles avec le mot clé « {{ tag }} »{% endblock %} + +{% block index_title %}Articles avec le mot clé « {{ tag }} » :{% endblock %} |