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> <name>{$author}</name>
<uri>{$siteroot}</uri> <uri>{$siteroot}</uri>
</author> </author>
<content type="html">{$post.content}</content> <content type="html">{$post.content |noAutoescape}</content>
</entry> </entry>
{/foreach} {/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=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="http://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" type="text/css" />
<link href= "{$siteroot}/css/style.css" 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" /> <link rel="alternate" href="{$siteroot}/rss.xml" type="application/rss+xml" />
{if $headInject} {$headInject |noAutoescape} {/if} {if $headInject} {$headInject |noAutoescape} {/if}
</head> </head>

View file

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