blob: 08ce440e8a20cd9afabb243ea9b8ecc9105aa048 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php $this->partial('aside_stats'); ?>
<div class="post content">
<a href="<?php echo _url ('index', 'index'); ?>"><?php echo Minz_Translate::t ('back_to_rss_feeds'); ?></a>
<h1><?php echo Minz_Translate::t ('stats_idle'); ?></h1>
<?php foreach ($this->idleFeeds as $period => $feeds): ?>
<div class="stat">
<h2><?php echo Minz_Translate::t ($period); ?></h2>
<ul>
<?php foreach ($feeds as $feed): ?>
<li><?php echo $feed; ?></li>
<?php endforeach; ?>
</ul>
</div>
<?php endforeach; ?>
</div>
|