correct plural, bad use of hyphen-minus in theme templates
authorM. Taylor Saotome-Westlake <ultimatelyuntruethought@gmail.com>
Tue, 6 Sep 2016 02:16:02 +0000 (19:16 -0700)
committerM. Taylor Saotome-Westlake <ultimatelyuntruethought@gmail.com>
Tue, 6 Sep 2016 02:23:36 +0000 (19:23 -0700)
theme/templates/category.html
theme/templates/page.html
theme/templates/tag.html

index 3d43b98..3c40675 100644 (file)
@@ -1,5 +1,5 @@
 {% extends "base.html" %}
-{% block title %}{{ category }} - {{ SITENAME }}{% endblock %}
+{% block title %}{{ category }}  {{ SITENAME }}{% endblock %}
 
 {% block content %}
 
index 220266d..000ea7a 100644 (file)
@@ -1,9 +1,9 @@
 {% extends "base.html" %}
-{% block title %}{{ page.title }}- {{ SITENAME }}{% endblock %}
+{% block title %}{{ page.title }} • {{ SITENAME }}{% endblock %}
 
 {% block content %}
 
 <h1>{{ page.title }}</h1>
-{{ page.content }}             
+{{ page.content }}
 
-{% endblock %}
\ No newline at end of file
+{% endblock %}
index c4181ac..a129a59 100644 (file)
@@ -1,9 +1,9 @@
 {% extends "base.html" %}
-{% block title %}{{ tag }} - {{ SITENAME }}{% endblock %}
+{% block title %}{{ tag }}  {{ SITENAME }}{% endblock %}
 
 {% block content %}
 
-<h1>Post tagged: {{ tag }}</h1>
+<h1>Posts tagged: {{ tag }}</h1>
 
 {% for article in articles_page.object_list %}
   {% include 'article_summary.inc.html' %}
@@ -11,4 +11,4 @@
 
 {% include 'pagination.inc.html' %}
 
-{% endblock %}
\ No newline at end of file
+{% endblock %}