list.html 638 B

123456789101112131415161718192021222324
  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. <p>{{ .List.Description }}</p>
  13. <form method="post">
  14. <p>Update list: <input type="submit" /><br />
  15. <textarea name="list_json" style="width:90%;height:500px;">{{ .ListJSON }}</textarea>
  16. </p>
  17. </form>
  18. </body>
  19. </html>