aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs
diff options
context:
space:
mode:
authorMark Felder <feld@feld.me>2016-02-23 14:43:16 -0600
committerMark Felder <feld@feld.me>2016-02-23 14:43:16 -0600
commit5792a2e3f67b806257fae40d23f6b24789c3b7e8 (patch)
treec7f88917a7f320cb062e25c277ee1d5b98dfbe01 /tuxlite_tbs
parentf4ef46862d4700df5e2c91ae9dc10788b765d96e (diff)
downloadpelican-themes-5792a2e3f67b806257fae40d23f6b24789c3b7e8.zip
pelican-themes-5792a2e3f67b806257fae40d23f6b24789c3b7e8.tar.gz
pelican-themes-5792a2e3f67b806257fae40d23f6b24789c3b7e8.tar.bz2
Fix other templates with unusual broken html
Diffstat (limited to 'tuxlite_tbs')
-rw-r--r--tuxlite_tbs/templates/author.html2
-rw-r--r--tuxlite_tbs/templates/categories.html2
-rw-r--r--tuxlite_tbs/templates/tag.html2
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 %}