1
Fork 0
GoShort/templates/list.gohtml

15 lines
485 B
Plaintext

<!doctype html>
<html lang=en>
<meta name=viewport content="width=device-width, initial-scale=1.0">
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/@exampledev/new.css@1.1.3/new.min.css>
<title>Short URLs</title>
<h1>Short URLs</h1>
<table style="white-space:nowrap;overflow-x:auto;display:block;">
<thead>
<tr><th>slug</th><th>hits</th><th>url</th></tr>
</thead>
<tbody>
{{range .}}<tr><td>{{.Slug}}</td><td>{{.Hits}}</td><td>{{.URL}}</td></tr>{{end}}
</tbody>
</table>
</html>