Files
FreshRSS/app/views/subscription/feed.phtml
Alexandre Alapetite 228d7adfdb Fix slider views (#5469)
* Fix slider titles
And fix full-page view of category configuration.
FIx https://github.com/FreshRSS/FreshRSS/pull/5449#issuecomment-1590021947

* Fix user queries and user management
Implement https://github.com/FreshRSS/FreshRSS/pull/5469#issuecomment-1591957935
2023-06-15 12:47:47 +02:00

17 lines
344 B
PHTML

<?php
/** @var FreshRSS_View $this */
if (!Minz_Request::paramBoolean('ajax')) {
$this->partial('aside_subscription');
}
if ($this->feed) {
$this->renderHelper('feed/update');
} else {
?>
<div class="alert alert-warn">
<span class="alert-head"><?= _t('sub.feed.no_selected') ?></span>
<?= _t('sub.feed.think_to_add') ?>
</div>
<?php } ?>