miniflux-legacy/templates/feeds.php

76 lines
3.4 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>
2015-01-15 02:18:24 +01:00
<nav>
<ul>
<li><a href="?action=add"><?= t('add') ?></a></li>
<li class="active"><a href="?action=feeds"><?= t('feeds') ?></a></li>
<li><a href="?action=import"><?= t('import') ?></a></li>
<li><a href="?action=export"><?= t('export') ?></a></li>
2015-08-02 18:59:14 +02:00
<li><a href="?action=refresh-all" data-action="refresh-all" data-concurrent-requests="<?= SUBSCRIPTION_CONCURRENT_REQUESTS ?>"><?= t('refresh all') ?></a></li>
2015-01-15 02:18:24 +01:00
</ul>
</nav>
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: ?>
<?php if ($nb_failed_feeds > 0): ?>
<p class="alert alert-error"><?= tne('An error occurred during the last check. Refresh the feed manually and check the %sconsole%s for errors afterwards!', '<a href="?action=console">', '</a>') ?></p>
<?php elseif ($nothing_to_read): ?>
2015-01-18 14:33:19 +01:00
<p class="alert alert-info"><?= tne('Nothing to read, do you want to %supdate your subscriptions%s?','<a href="?action=refresh-all" data-action="refresh-all">','</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 data-feed-id="<?= $feed['id'] ?>" <?= (! $feed['enabled']) ? 'data-feed-disabled="1"' : '' ?> <?= ($feed['parsing_error']) ? 'data-feed-error="1"' : '' ?>>
<h2>
<?php if (! $feed['enabled']): ?>
2015-01-02 17:56:01 +01:00
<span title="<?= t('Subscription disabled') ?>"></span>
<?php endif ?>
2014-12-25 00:12:41 +01:00
<?= Helper\favicon($favicons, $feed['id']) ?>
2013-09-15 01:05:52 +02:00
<a href="?action=feed-items&amp;feed_id=<?= $feed['id'] ?>" title="<?= t('Show only this subscription') ?>"><?= Helper\escape($feed['title']) ?></a>
2016-05-03 10:45:07 +02:00
&lrm;<span class="items-count"><?= $feed['items_unread'], '/', $feed['items_total'] ?></span>
<?php if ($feed['enabled']): ?>
<br/>
<?php if ($feed['last_checked']): ?>
<time class="feed-last-checked" data-after-update="<?= t('updated just now') ?>">
2016-05-03 10:45:07 +02:00
<?= t('checked at'), ' ', dt('%e %B %Y %k:%M', $feed['last_checked']) ?>
</time>
<?php else: ?>
<span class="feed-last-checked" data-after-update="<?= t('updated just now') ?>">
<?= t('never updated after creation') ?>
</span>
<?php endif ?>
<span class="feed-parsing-error">
<?= t('(error occurred during the last check)') ?>
</span>
<?php endif ?>
2013-02-24 20:04:56 +01:00
</h2>
2014-02-15 03:21:14 +01:00
<ul class="item-menu">
<li>
<a href="<?= $feed['site_url'] ?>" rel="noreferrer" target="_blank"><?= Helper\get_host_from_url($feed['site_url']) ?></a>
</li>
2014-02-18 04:04:49 +01:00
<?php if ($feed['enabled']): ?>
<li>
<a href="?action=refresh-feed&amp;feed_id=<?= $feed['id'] ?>" data-action="refresh-feed"><?= t('refresh') ?></a>
2014-02-18 04:04:49 +01:00
</li>
<?php endif ?>
<li><a href="?action=edit-feed&amp;feed_id=<?= $feed['id'] ?>"><?= t('edit') ?></a></li>
2014-02-15 03:21:14 +01:00
</ul>
2013-02-18 03:48:21 +01:00
</article>
<?php endforeach ?>
</section>
<?php endif ?>