diff options
Diffstat (limited to '.themes/classic/source/atom.xml')
-rw-r--r-- | .themes/classic/source/atom.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.themes/classic/source/atom.xml b/.themes/classic/source/atom.xml index 83af3f81..19a972c2 100644 --- a/.themes/classic/source/atom.xml +++ b/.themes/classic/source/atom.xml @@ -17,7 +17,7 @@ layout: nil {% for post in site.posts limit: 20 %} <entry> - <title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title> + <title type="html"><![CDATA[{% if site.titlecase %}{{ post.title | titlecase | cdata_escape }}{% else %}{{ post.title | cdata_escape }}{% endif %}]]></title> <link href="{{ site.url }}{{ post.url }}"/> <updated>{{ post.date | date_to_xmlschema }}</updated> <id>{{ site.url }}{{ post.id }}</id> |