PHP Classes

File: templates/rss091.tpl

Recommend this page to a friend!
  Classes of Full name   x64 Feeds Generator   templates/rss091.tpl   Download  
File: templates/rss091.tpl
Role: Configuration script
Content type: text/plain
Description: This is the template for the RSS 0.91 feeds
Class: x64 Feeds Generator
Generate cached XML feeds using templates
Author: By
Last change:
Date: 18 years ago
Size: 502 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="{tag:charset}"?>
<rss version="0.91">

<channel>
    <title>{tag:title}</title>
    <link>{tag:link}</link>
    <description>{tag:description}</description>
    <language>{tag:language}</language>
    <lastBuildDate>{tag:last_build}</lastBuildDate>
    <pubDate>{tag:date}</pubDate>
    {loop:items}
    <item>
        <title>{tag:items[].title}</title>
        <link>{tag:items[].link}</link>
        <description>{tag:items[].description}</description>
    </item>
    {/loop:items}
</channel>
</rss>