NAME

Template::Plugin::RSSLite - Module to use XML::RSSLite as a Template::Toolkit plugin.

SYNOPSIS

[% USE rss = RSSLite('filename') %]
[% rss.title %]
[% FOREACH rss.item %]
 * [% title %]
   [% link %]
[% END %]

DESCRIPTION

See documentation for XML::RSSLite for more info.

A good way to learn more about what this module returns is to try this:

[% USE rss = RSSLite('filename') %]
[% USE Dumper %]
[% Dumper.dump(rss) %]

AUTHOR

Kenneth Ekdahl <sensei@sensei.nu>

SEE ALSO

perl, XML::RSSLite, Template.