41 lines
902 B
Plaintext
41 lines
902 B
Plaintext
{{!
|
|
boardlist.mustache -- full list of every board
|
|
template parameters:
|
|
- graph ( a list of 4 string tuples: (board, posts_per_hour, posts_per_day, total_posts) )
|
|
- frontend ( the name of the frontend )
|
|
- prefix ( the site's prefix )
|
|
}}
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="/static/user.css">
|
|
<title>{{frontend}} boards</title>
|
|
</head>
|
|
<body>
|
|
<table border="1">
|
|
<tr>
|
|
<th>board</th>
|
|
<th>posts per hour</th>
|
|
<th>posts per day</th>
|
|
<th>total</th>
|
|
</tr>
|
|
{{# graph}}
|
|
<tr>
|
|
<td>
|
|
<a href="{{prefix}}{{Board}}-0.html">{{Board}}</a>
|
|
</td>
|
|
<td>
|
|
{{Hour}}
|
|
</td>
|
|
<td>
|
|
{{Day}}
|
|
</td>
|
|
<td>
|
|
{{All}}
|
|
</td>
|
|
</tr>
|
|
{{/ graph}}
|
|
</table>
|
|
</body>
|
|
</html>
|