Disable ATOM autodiscovery for now. Stop autoescaping post content. Erg.

This commit is contained in:
Brit Butler 2012-08-29 23:53:48 -04:00
parent 3a83616bb8
commit ce43236a99
3 changed files with 2 additions and 3 deletions

View file

@ -22,7 +22,7 @@
<name>{$author}</name>
<uri>{$siteroot}</uri>
</author>
<content type="html">{$post.content}</content>
<content type="html">{$post.content |noAutoescape}</content>
</entry>
{/foreach}

View file

@ -9,7 +9,6 @@
<link href="http://fonts.googleapis.com/css?family=Vollkorn:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css" />
<link href="http://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" type="text/css" />
<link href= "{$siteroot}/css/style.css" rel="stylesheet" type="text/css" />
<link rel="alternate" href="{$siteroot}/feed.atom" type="application/atom+xml" />
<link rel="alternate" href="{$siteroot}/rss.xml" type="application/rss+xml" />
{if $headInject} {$headInject |noAutoescape} {/if}
</head>

View file

@ -20,7 +20,7 @@
{foreach $tag in $post.tags}
<category><![CDATA[ {$tag} ]]></category>
{/foreach}
<description><![CDATA[ {$post.content} ]]></description>
<description><![CDATA[ {$post.content |noAutoescape} ]]></description>
</item>
{/foreach}