diff options
author | Mark Felder <feld@feld.me> | 2016-02-23 14:43:16 -0600 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2016-02-23 14:43:16 -0600 |
commit | 5792a2e3f67b806257fae40d23f6b24789c3b7e8 (patch) | |
tree | c7f88917a7f320cb062e25c277ee1d5b98dfbe01 | |
parent | f4ef46862d4700df5e2c91ae9dc10788b765d96e (diff) | |
download | pelican-themes-5792a2e3f67b806257fae40d23f6b24789c3b7e8.tar.gz |
Fix other templates with unusual broken html
-rw-r--r-- | tuxlite_tbs/templates/author.html | 2 | ||||
-rw-r--r-- | tuxlite_tbs/templates/categories.html | 2 | ||||
-rw-r--r-- | tuxlite_tbs/templates/tag.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tuxlite_tbs/templates/author.html b/tuxlite_tbs/templates/author.html index 5b41b41..0b37290 100644 --- a/tuxlite_tbs/templates/author.html +++ b/tuxlite_tbs/templates/author.html @@ -1,2 +1,2 @@ {% extends "index.html" %} -{% block title %}{{ SITENAME }} <small>{{ author }}</small>{% endblock %}
\ No newline at end of file +{% block title %}{{ SITENAME }} - {{ author }}{% endblock %} diff --git a/tuxlite_tbs/templates/categories.html b/tuxlite_tbs/templates/categories.html index 2b95d34..9277410 100644 --- a/tuxlite_tbs/templates/categories.html +++ b/tuxlite_tbs/templates/categories.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}{{ SITENAME }} <small>[categories]</small>{% endblock %} +{% block title %}{{ SITENAME }} - [categories]{% endblock %} {% block content %} <ul> {% for category, articles in categories %} diff --git a/tuxlite_tbs/templates/tag.html b/tuxlite_tbs/templates/tag.html index ce6dcb7..68cdcba 100644 --- a/tuxlite_tbs/templates/tag.html +++ b/tuxlite_tbs/templates/tag.html @@ -1,2 +1,2 @@ {% extends "index.html" %} -{% block title %}{{ SITENAME }} <small>{{ tag }}</small>{% endblock %}
\ No newline at end of file +{% block title %}{{ SITENAME }} - {{ tag }}{% endblock %} |