From 45fcfbb2554da04b7fdfba29380d95dcfc02c950 Mon Sep 17 00:00:00 2001
From: "M. Taylor Saotome-Westlake" <ultimatelyuntruethought@gmail.com>
Date: Mon, 5 Sep 2016 19:16:02 -0700
Subject: [PATCH] correct plural, bad use of hyphen-minus in theme templates

---
 theme/templates/category.html | 2 +-
 theme/templates/page.html     | 6 +++---
 theme/templates/tag.html      | 6 +++---
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/theme/templates/category.html b/theme/templates/category.html
index 3d43b98..3c40675 100644
--- a/theme/templates/category.html
+++ b/theme/templates/category.html
@@ -1,5 +1,5 @@
 {% extends "base.html" %}
-{% block title %}{{ category }} - {{ SITENAME }}{% endblock %}
+{% block title %}{{ category }} • {{ SITENAME }}{% endblock %}
 
 {% block content %}
 
diff --git a/theme/templates/page.html b/theme/templates/page.html
index 220266d..000ea7a 100644
--- a/theme/templates/page.html
+++ b/theme/templates/page.html
@@ -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 %}
diff --git a/theme/templates/tag.html b/theme/templates/tag.html
index c4181ac..a129a59 100644
--- a/theme/templates/tag.html
+++ b/theme/templates/tag.html
@@ -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 %}
-- 
2.17.1