feed.phtml 346 B

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