123456789101112131415161718192021222324 |
- <html>
- <head>
- <title>gildas.ch</title>
- <link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
- <link rel="stylesheet" href="/style.css">
- </head>
- <body>
- {{ range $e := .Errors }}
- <div class="error">{{ $e }}</div>
- {{ end }}
- <h1>{{ .List.Title }}</h1>
- <p>{{ .List.Description }}</p>
- <form method="post">
- <p>Update list: <input type="submit" /><br />
- <textarea name="list_json" style="width:90%;height:500px;">{{ .ListJSON }}</textarea>
- </p>
- </form>
- </body>
- </html>
|