Skip to content

Commit

Permalink
fix copy link button dark mode style
Browse files Browse the repository at this point in the history
  • Loading branch information
Dima committed Jan 20, 2024
1 parent eb69d7b commit f72b228
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions web/pages/random.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html>
<head>
{{ template "head" }}

<title>ytstalker | Statistics</title>
</head>
<body>
{{ template "header" }}



<h2>Best videos</h2>
<table border="1" width="100%" cellpadding="5">
<tr>
<th>Reactions</th>
<th>Title</th>
</tr>
{{ range .Best }}
<tr>
<td>{{ .Reactions }}</td>
<td><a href="/?v={{ .ID }}">{{ .Title }}</a></td>
</tr>
{{end}}
</table>

<h2>Worst videos</h2>
<table border="1" width="100%" cellpadding="5">
<tr>
<th>Reactions</th>
<th>Title</th>
</tr>
{{ range .Worst }}
<tr>
<td>{{ .Reactions }}</td>
<td><a href="/?v={{ .ID }}">{{ .Title }}</a></td>
</tr>
{{end}}
</table>

{{ template "footer" }}
</body>

</html>

0 comments on commit f72b228

Please sign in to comment.