morning-coffee/templates/manage.html.tmpl

16 lines
338 B
Cheetah
Raw Normal View History

{{ define "content" }}
<main>
<form action="/manage" method="post">
<label for="feed">Url</label>
<input name="url" type="url" />
<input type="submit" value="Save" />
</form>
<h1>Subscriptions</h1>
<ul>
{{ range .Data.Feeds }}
<li>{{ . }}</li>
{{ end }}
</ul>
</main>
{{ end }}