feed.phtml 321 B

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