Vulcan/packages/telescope-post-by-feed/lib/client/templates/feeds.html
2014-12-18 10:47:37 +09:00

21 lines
547 B
HTML

<template name="rssUrls">
<div class="grid-small grid-module dialog admin">
<h2>Feeds</h2>
<form class="form-block">
<h3>Add New Feed</h3>
<div class="control-group">
<label>Url</label>
<div class="controls"><input id="url" type="text" value="" /></div>
</div>
<div class="form-actions">
<input type="submit" class="button" value="Submit" />
</div>
</form>
<ul>
{{#each feeds}}
{{> UI.dynamic template=feedItem}}
{{/each}}
</ul>
</div>
</template>