feed.phtml 378 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. /** @var FreshRSS_View $this */
  4. if (!Minz_Request::paramBoolean('ajax')) {
  5. $this->partial('aside_subscription');
  6. }
  7. if ($this->feed !== null) {
  8. $this->renderHelper('feed/update');
  9. } else {
  10. ?>
  11. <div class="alert alert-warn">
  12. <span class="alert-head"><?= _t('sub.feed.no_selected') ?></span>
  13. <?= _t('sub.feed.think_to_add') ?>
  14. </div>
  15. <?php } ?>