1
0
This repository has been archived on 2025-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
archives
bundled-libs
deployment
docs
htmlarea
include
lang
plugins
sql
templates
2k11
UTF-8
admin
img
js
commentform.tpl
comments.tpl
comments_by_author.tpl
config.inc.php
content.tpl
entries.tpl
entries_archives.tpl
entries_summary.tpl
feed_0.91.tpl
feed_1.0.tpl
feed_2.0.tpl
feed_atom0.3.tpl
feed_atom1.0.tpl
feed_opml1.0.tpl
index.tpl
info.txt
lang_cs.inc.php
lang_cz.inc.php
lang_de.inc.php
lang_en.inc.php
legal.txt
media_showitem.tpl
plugin_calendar.tpl
plugin_categories.tpl
plugin_commentsearch_searchresults.tpl
plugin_contactform.tpl
plugin_findmore.tpl
plugin_staticblock.tpl
plugin_staticpage.tpl
plugin_staticpage_searchresults.tpl
plugin_staticpage_sidebar.tpl
preview.png
preview_backend_fullsize.jpg
preview_fullsize.jpg
preview_iframe.tpl
sidebar.tpl
style.css
style_fallback.css
trackbacks.tpl
bootstrap4
bulletproof
clean-blog
competition
contest
default
default-rtl
next
skeleton
timeline
jquery.js
s9y_banner_small.png
templates_c
tests
uploads
.gitignore
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
README.markdown
checksums.inc.php
comment.php
composer.json
composer.phar
exit.php
index.php
rss.php
serendipity.css.php
serendipity_admin.php
serendipity_admin_image_selector.php
serendipity_config.inc.php
serendipity_xmlrpc.php
wfwcomment.php
LuckyCoinkydink/templates/2k11/feed_0.91.tpl
onli 3179ed7d57 Make feeds work with simplified template fallback
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
2016-07-27 10:35:03 +02:00

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>