mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
11 lines
386 B
HTML
11 lines
386 B
HTML
<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>
|
|
{{#loader ready=Template.subscriptionsReady}}
|
|
{{#each feeds}}
|
|
{{> feed_item}}
|
|
{{/each}}
|
|
{{/loader}}
|
|
</template>
|