Since default is no longer queried if not set specifically, the new
default template 2k11 needs to carry the feed template and the banner
image. See http://board.s9y.org/viewtopic.php?f=3&t=20801 and
8affa1126a
27 lines
625 B
Smarty
27 lines
625 B
Smarty
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<rss version="0.91" {$namespace_display_dat}>
|
|
<channel>
|
|
<title>{$metadata.title}</title>
|
|
<link>{$metadata.link}</link>
|
|
<description>{$metadata.description}</description>
|
|
<language>{$metadata.language}</language>
|
|
{$metadata.additional_fields.image}
|
|
|
|
{foreach from=$entries item="entry"}
|
|
<item>
|
|
<title>{$entry.feed_title}</title>
|
|
<link>{$entry.feed_entryLink}{if $is_comments}#c{$entry.commentid}{/if}</link>
|
|
|
|
{if !empty($entry.body)}
|
|
<description>
|
|
{$entry.feed_body|@escape} {$entry.feed_ext|@escape}
|
|
</description>
|
|
{/if}
|
|
</item>
|
|
{/foreach}
|
|
|
|
</channel>
|
|
</rss>
|
|
|