aboutsummaryrefslogtreecommitdiff
path: root/app/views/subscription/feed.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/subscription/feed.phtml')
-rw-r--r--app/views/subscription/feed.phtml15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/views/subscription/feed.phtml b/app/views/subscription/feed.phtml
new file mode 100644
index 000000000..60664fdee
--- /dev/null
+++ b/app/views/subscription/feed.phtml
@@ -0,0 +1,15 @@
+<?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('sub.feed.no_selected'); ?></span>
+ <?php echo _t('sub.feed.think_to_add'); ?>
+</div>
+<?php } ?>