Files
FreshRSS/app/views/subscription/feed.phtml
Marien Fressinaud 89c407d7d7 Add selected feed on main subscription page
- When an id is given, corresponding feed is displayed
- Refactor code
- Improve coding style

See https://github.com/marienfressinaud/FreshRSS/issues/646
2014-10-01 11:58:08 +02:00

16 lines
308 B
PHTML

<?php
if (!Minz_Request::param('ajax')) {
$this->partial('aside_subscription');
}
if ($this->feed) {
$this->renderHelper('feed/update');
} else {
?>
<div class="alert alert-warn">
<span class="alert-head"><?php echo _t('no_selected_feed'); ?></span>
<?php echo _t('think_to_add'); ?>
</div>
<?php } ?>