1
Fork 0

Fix list
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jan-Lukas Else 2021-08-11 15:16:52 +02:00
parent c5dd0e6e40
commit 56f9b6a542
1 changed files with 3 additions and 7 deletions

View File

@ -4,16 +4,12 @@
<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>
<table style="white-space:nowrap;overflow-x:auto;display:block;">
<thead>
<tr>
<th><span style="white-space: nowrap;">slug</span></th>
<th><span style="white-space: nowrap;">url</span></th>
<th><span style="white-space: nowrap;">hits</span></th>
</tr>
<tr><th>slug</th><th>hits</th><th>url</th></tr>
</thead>
<tbody>
{{range .}}<tr><td>{{.Slug}}</td><td>{{.URL}}</td><td>{{.Hits}}</td></tr>{{end}}
{{range .}}<tr><td>{{.Slug}}</td><td>{{.Hits}}</td><td>{{.URL}}</td></tr>{{end}}
</tbody>
</table>
</html>