Skip to content

Commit

Permalink
Fix other templates with unusual broken html
Browse files Browse the repository at this point in the history
  • Loading branch information
feld committed Feb 23, 2016
1 parent f4ef468 commit 5792a2e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tuxlite_tbs/templates/author.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
{% extends "index.html" %}
{% block title %}{{ SITENAME }} <small>{{ author }}</small>{% endblock %}
{% block title %}{{ SITENAME }} - {{ author }}{% endblock %}
2 changes: 1 addition & 1 deletion tuxlite_tbs/templates/categories.html
Original file line number Diff line number Diff line change
@@ -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 %}
Expand Down
2 changes: 1 addition & 1 deletion tuxlite_tbs/templates/tag.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
{% extends "index.html" %}
{% block title %}{{ SITENAME }} <small>{{ tag }}</small>{% endblock %}
{% block title %}{{ SITENAME }} - {{ tag }}{% endblock %}

0 comments on commit 5792a2e

Please sign in to comment.