PHP Classes

File: templates/rss200.tpl

Recommend this page to a friend!
  Classes of Full name   x64 Feeds Generator   templates/rss200.tpl   Download  
File: templates/rss200.tpl
Role: Configuration script
Content type: text/plain
Description: This is the template for the RSS 2.00 feeds
Class: x64 Feeds Generator
Generate cached XML feeds using templates
Author: By
Last change: Updated to follow the specs and new changes to the class.
Date: 18 years ago
Size: 783 bytes
 

Contents

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

<channel>
    <title>{tag:title}</title>
    <link>{tag:link}</link>
    <description><![CDATA[{tag:description}]]></description>
    <language>{tag:language}</language>
    <generator>{tag:generator}(Atomo64 RSS 2.0 Template)</generator>
    <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>
            <category>{tag:items[].category}</category>
            <author>{tag:items[].author} &lt;{tag:items[].mail}&gt;</author>
            <pubDate>{tag:items[].published}</pubDate>
            <guid>{tag:items[].id}</guid>
        </item>
    {/loop:items}
</channel>
</rss>