blob: 4bf8b082efbacce1adec5a7bcfa3ef532d1b9821 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{strip}
<div class="listing feed">
<div class="header">
<h1>{tr}{$smarty.const.FEED_PKG_NAME|ucwords}{/tr}</h1>
</div>
<div class="body">
<ul class="data feed">
{foreach from=$actions item='action'}
<li class="item">
{if $action.feed_icon_url}<img src="{$action.feed_icon_url}" alt="{$action.conjugation_phrase|escape}" />{/if} {$action.real_log} on {$action.last_modified|date_format}
</li>
{/foreach}
</ul>
<div class="clear"></div>
{pagination}
</div> <!-- end .body -->
</div> <!-- end .feed -->
{/strip}
|