From: M. Taylor Saotome-Westlake Date: Tue, 6 Sep 2016 02:16:02 +0000 (-0700) Subject: correct plural, bad use of hyphen-minus in theme templates X-Git-Url: http://unremediatedgender.space/source?p=Ultimately_Untrue_Thought.git;a=commitdiff_plain;h=45fcfbb2554da04b7fdfba29380d95dcfc02c950;hp=72cf3c292d57fe82afb4d617bb0b5af835fb9bf2 correct plural, bad use of hyphen-minus in theme templates --- 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 %}

{{ page.title }}

-{{ 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 %} -

Post tagged: {{ tag }}

+

Posts tagged: {{ tag }}

{% 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 %}