2014-12-13 22:55:10 +08:00
|
|
|
<template name="rssUrls">
|
|
|
|
<div class="grid-small grid-module dialog admin">
|
2014-12-18 10:47:37 +09:00
|
|
|
<h2>Feeds</h2>
|
2014-12-13 22:55:10 +08:00
|
|
|
|
|
|
|
<form class="form-block">
|
2014-12-18 10:47:37 +09:00
|
|
|
<h3>Add New Feed</h3>
|
2014-12-13 22:55:10 +08:00
|
|
|
<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>
|
2014-12-18 10:47:37 +09:00
|
|
|
{{#each feeds}}
|
|
|
|
{{> UI.dynamic template=feedItem}}
|
2014-12-13 22:55:10 +08:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</template>
|