|
|
@@ -71,6 +71,11 @@
|
|
|
</li>
|
|
|
|
|
|
<?php
|
|
|
+ $nbFeedsTotal = 0;
|
|
|
+ foreach ($this->categories as $cat) {
|
|
|
+ $nbFeedsTotal += $cat->nbFeeds();
|
|
|
+ }
|
|
|
+
|
|
|
foreach ($this->categories as $cat):
|
|
|
$feeds = $cat->feeds();
|
|
|
$position = $cat->attributes('position');
|
|
|
@@ -95,12 +100,14 @@
|
|
|
?>
|
|
|
<li id="f_<?= $feed->id() ?>" class="item feed<?= $f_active ? ' active' : '', $feed->mute() ? ' mute' : '' ?><?=
|
|
|
$feed->inError() ? ' error' : '' ?><?= $feed->nbEntries() <= 0 ? ' empty' : ''
|
|
|
- ?>" data-unread="<?= $feed->nbNotRead() ?>" data-priority="<?= $feed->priority() ?>">
|
|
|
- <div class="dropdown no-mobile">
|
|
|
+ ?>" data-unread="<?= $feed->nbNotRead() ?>" data-priority="<?= $feed->priority() ?>"><?php
|
|
|
+ if ($f_active || $nbFeedsTotal < FreshRSS_Context::$user_conf->simplify_over_n_feeds):
|
|
|
+ ?><div class="dropdown no-mobile">
|
|
|
<div class="dropdown-target"></div><a class="dropdown-toggle" data-fweb="<?= $feed->website() ?>"><?= _i('configure') ?></a><?php /* feed_config_template */ ?>
|
|
|
</div>
|
|
|
<?php
|
|
|
- if (FreshRSS_Context::$user_conf->show_favicons): ?><img class="favicon" src="<?= $feed->favicon() ?>" alt="✇" loading="lazy" /><?php endif;
|
|
|
+ if (FreshRSS_Context::$user_conf->show_favicons) { ?><img class="favicon" src="<?= $feed->favicon() ?>" alt="✇" loading="lazy" /><?php }
|
|
|
+ endif;
|
|
|
?><a class="item-title" data-unread="<?= format_number($feed->nbNotRead()) ?>" href="<?=
|
|
|
_url('index', $actual_view, 'get', 'f_' . $feed->id()) . $state_filter_manual ?>"><?= $feed->name() ?></a></li>
|
|
|
<?php
|