mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-04 14:36:00 -05:00
- When an id is given, corresponding feed is displayed - Refactor code - Improve coding style See https://github.com/marienfressinaud/FreshRSS/issues/646
16 lines
308 B
PHTML
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 } ?>
|