morning-coffee/templates/manage.html.tmpl

33 lines
963 B
Cheetah
Raw Normal View History

<html>
<head>
<title>☕ Morning coffee</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="/static/main.css", rel="stylesheet">
</head>
<body>
<header>
<h1>☕ Morning coffee</h1>
<nav>
<ul>
<li><a href="/about">About</a></li>
<li><a href="/">Feeds</a></li>
<li><a href="/manage">Manage</a></li>
</ul>
</nav>
</header>
<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 .Feeds }}
<li>{{ . }}</li>
{{ end }}
</ul>
</main>
</body>
</html>