0byt3m1n1
Path:
/
data
/
applications
/
aps
/
gallery
/
2.2-08
/
standard
/
htdocs
/
modules
/
rss
/
templates
/
[
Home
]
File: FeedList.tpl
{* * $Revision: 15342 $ * If you want to customize this file, do not edit it directly since future upgrades * may overwrite it. Instead, copy it into a new directory called "local" and edit that * version. Gallery will look for that file first and use it if it exists. *} <div class="gbBlock gcBackground1"> <h2> {g->text text="RSS Feeds"} </h2> </div> <div class="gbBlock"> <p class="giDescription"> {g->text text="This is a list of all the feeds that are available on this Gallery"} </p> {if empty($FeedList.feeds)} <p> {g->text text="No feeds have yet been defined"} </p> {else} <table class="gbDataTable"> <tr> <th> {g->text text="Feed link"} </th> <th> {g->text text="Description"} </th> </tr> {foreach from=$FeedList.feeds item=feed} <tr class="{cycle values="gbEven,gbOdd"}"> <td><a href="{g->url arg1="view=rss.Render" arg2="name=`$feed.name`"}"> {$feed.name}</a></td> <td>{if isset($feed.params.description)}{$feed.params.description}{/if}</td> </tr> {/foreach} </table> {/if} </div>