From 8d3731e0dc684c8798c652d5d433721e95057c27 Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Wed, 8 Jun 2011 20:32:24 -0400 Subject: updated titlecase filter, added titlecase filter to entry titles in article.html partial --- themes/classic/source/_includes/article.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'themes/classic') diff --git a/themes/classic/source/_includes/article.html b/themes/classic/source/_includes/article.html index 1be65526..92c06024 100644 --- a/themes/classic/source/_includes/article.html +++ b/themes/classic/source/_includes/article.html @@ -5,9 +5,9 @@ {% endif %}
{% if index %} -

{{ page.title }}

+

{{ page.title | titlecase }}

{% else %} -

{{ page.title }}

+

{{ page.title | titlecase }}

{% endif %} {% unless page.nometa %}

@@ -26,3 +26,4 @@ {% else %}

{{ content | smart_quotes }}
{% endif %} + -- cgit v1.2.1