Vulcan/packages/telescope-post-by-feed/lib/client/templates/feeds.html

12 lines
386 B
HTML
Raw Normal View History

<template name="feeds">
<div class="form-well add-feed">
<h3>Add new feed:</h3>
{{> quickForm collection="Feeds" id="insertFeedForm" type="insert" label-class="control-label" input-col-class="controls" template="bootstrap3-horizontal"}}
</div>
2015-09-17 18:15:00 +09:00
{{#loader ready=Template.subscriptionsReady}}
2015-09-17 14:51:14 +09:00
{{#each feeds}}
{{> feed_item}}
{{/each}}
2015-09-17 18:15:00 +09:00
{{/loader}}
</template>