list.html 719 B

12345678910111213141516171819202122232425
  1. <html>
  2. <head>
  3. <title>gildas.ch</title>
  4. <link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
  5. <link rel="stylesheet" href="/style.css">
  6. </head>
  7. <body>
  8. {{ range $e := .Errors }}
  9. <div class="error">{{ $e }}</div>
  10. {{ end }}
  11. <h1>{{ .List.Title }}</h1>
  12. {{ .Description }}
  13. <form method="post">
  14. <p>Update list: <input type="submit" /><br />
  15. <input type="text" name="title" value="{{ .List.Title }}" /><br />
  16. <textarea name="description" style="width:90%;height:500px;">{{ .List.Description }}</textarea>
  17. </p>
  18. </form>
  19. </body>
  20. </html>