Skip to content

Commit c36503d

Browse files
committed
public: merge pv/uv to single column
1 parent b27014b commit c36503d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

public/stats.html

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{{ .GoogleAnalytics }}
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>golang.design link aliases</title>
7+
<title>{{.Title}}</title>
88
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
99
<style>
1010
:root {
@@ -61,14 +61,12 @@ <h1>{{ .Title }}</h1>
6161
<h5><a href="https://github.com/golang-design/redir">An alias request redirector</a></h5>
6262
<table class="table table-striped table-dark" style="width:100%">
6363
<tr>
64-
<th>PV</th>
65-
<th>UV</th>
64+
<th>PV/UV</th>
6665
<th>URL</th>
6766
</tr>
6867
{{range .Records}}
6968
<tr>
70-
<td>{{ .PV }}</td>
71-
<td> {{ .UV }}</td>
69+
<td>{{ .PV }}/{{ .UV }}</td>
7270
<td><a href="{{ $.Host }}/s/{{ .Alias }}">{{ $.Host }}/s/{{ .Alias }}</a></td>
7371
</tr>
7472
{{end}}

0 commit comments

Comments
 (0)