miniflux-legacy/templates/feeds.php

38 lines
1.6 KiB
PHP
Raw Normal View History

2013-02-18 03:48:21 +01:00
<div class="page-header">
2013-04-13 03:08:55 +02:00
<h2><?= t('Subscriptions') ?></h2>
2013-02-24 20:04:56 +01:00
<ul>
2013-04-13 03:08:55 +02:00
<li><a href="?action=add"><?= t('add') ?></a></li>
<li><a href="?action=import"><?= t('import') ?></a></li>
<li><a href="?action=export"><?= t('export') ?></a></li>
<li><a href="?action=refresh-all" data-action="refresh-all"><?= t('refresh all') ?></a></li>
2013-02-24 20:04:56 +01:00
</ul>
2013-02-18 03:48:21 +01:00
</div>
<?php if (empty($feeds)): ?>
2013-04-13 03:08:55 +02:00
<p class="alert alert-info"><?= t('No subscription') ?></p>
2013-02-18 03:48:21 +01:00
<?php else: ?>
2013-03-17 23:16:25 +01:00
<?php if ($nothing_to_read): ?>
2013-04-13 03:08:55 +02:00
<p class="alert"><?= t('Nothing to read, do you want to <a href="?action=refresh-all" data-action="refresh-all">update your subscriptions?</a>') ?></p>
2013-03-17 23:16:25 +01:00
<?php endif ?>
2013-02-18 03:48:21 +01:00
<section class="items">
<?php foreach ($feeds as $feed): ?>
<article>
2013-02-24 20:04:56 +01:00
<h2>
<span id="loading-feed-<?= $feed['id'] ?>"></span>
<a href="<?= $feed['site_url'] ?>" rel="noreferrer" target="_blank"><?= Helper\escape($feed['title']) ?></a>
</h2>
2013-02-18 03:48:21 +01:00
<p>
2013-04-13 03:08:55 +02:00
<a href="<?= $feed['site_url'] ?>" rel="noreferrer" target="_blank"><?= Helper\get_host_from_url($feed['site_url']) ?></a> |
<a href="<?= Helper\escape($feed['feed_url']) ?>" rel="noreferrer" target="_blank"><?= t('feed link') ?></a> |
<a href="?action=confirm-remove&amp;feed_id=<?= $feed['id'] ?>"><?= t('remove') ?></a> |
<a href="?action=refresh-feed&amp;feed_id=<?= $feed['id'] ?>" data-feed-id="<?= $feed['id'] ?>" data-action="refresh-feed"><?= t('refresh') ?></a>
2013-02-18 03:48:21 +01:00
</p>
</article>
<?php endforeach ?>
</section>
<?php endif ?>