Free_Culture_Podcasts/feedWatcher_4.tpl

21 lines
539 B
Smarty

[%# feedWatcher_4.tpl 2020-01-25 -%]
[%# Generates simple lines each containing title and description per feed -%]
*The following is a list of Creative Commons podcasts recommended by the Hacker Public Radio community.*
[% i = 0 -%]
[% WHILE i < feeds.size -%]
[% IF feeds.$i.urls_description.length > 0 -%]
[% desc = feeds.$i.urls_description -%]
[% ELSE -%]
[% desc = "[No description]" -%]
[% END -%]
**[% feeds.$i.urls_title %]**: [% desc %]
[% i = i + 1 -%]
[% END -%]
[%#
# vim: syntax=tt2:ts=8:sw=4:ai:et:tw=78:fo=tcrqn21
-%]