-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix copy link button dark mode style
- Loading branch information
Dima
committed
Jan 20, 2024
1 parent
eb69d7b
commit f72b228
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |