1234567891011121314151617181920212223242526 |
- <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 }}
- <form method="post">
- <p>Scan files: <input type="submit" />
- <input type="hidden" name="scan" value="1" />
- </p>
- </form>
- <ul class="file-list">
- {{ range $f := .Files }}
- <li><a href="/files/{{ $f }}">{{ $f }}</a></li>
- {{ end }}
- </ul>
- </body>
- </html>
|