blob: 7dd4dfc0eb23857cc684d164d92dab0a4e4bdc87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<!DOCTYPE html>
<html lang="en">
{{template "head"}}
<body>
{{template "header" .ListName}}
<div class="container mb-5">
<div class="row">
<div class="col-12 pb-4">
<h1 class="first-header">Gentoo Archives: {{.ListName}}</h1>
<table class="table">
<tr>
<th>Month</th>
<th>Number of messages</th>
</tr>
{{range .MessageData}}
{{if ne .CombinedDate ""}}
<tr>
<td><a href="threads/{{.CombinedDate}}/">{{.CombinedDate}}</a></td>
<td>{{.MessageCount}}</td>
</tr>
{{end}}
{{end}}
</table>
</div>
</div>
</div>
{{template "footer"}}
</body>
</html>
|