Archived
1
0

update board list template

This commit is contained in:
Jeff Becker 2017-04-22 09:36:16 -04:00
parent 0e2c1badcd
commit 66c1adfece

View File

@ -8,44 +8,34 @@
<!doctype html> <!doctype html>
<html> <html>
<head> <head>
<link rel="stylesheet" href="{{prefix}}static/site.css"></link> <link rel="stylesheet" href="{{prefix}}static/krane.css"></link>
<link id="current_theme" rel="stylesheet" href="{{prefix}}static/user.css"></link>
<title> {{frontend}} {{#i18n.Translations}}{{board_list_title}}{{/i18n.Translations}} </title> <title> {{frontend}} {{#i18n.Translations}}{{board_list_title}}{{/i18n.Translations}} </title>
<meta property="og:site_name" content="changolia" />
<meta property="og:type" content="website"/>
<meta property="og:title" content="board list"/>
<meta property="og:url" content="{{prefix}}boards.html"/>
<meta property="og:description" content="changolia board list on {{frontend}}"/>
<meta property="og:image"
content="{{prefix}}static/changolia-logo.png"/>
</head> </head>
<body> <body>
<center> <table class="activity" cellspacing="0" cellpadding="0" border="0" width="100%">
<div class="index-outer">
<div class="index-inner">
<table id="board_graph">
<thead>
<tr> <tr>
<th> {{#i18n.Translations}}{{board_label}}{{/i18n.Translations}} </th> <td class="usage_td">
<th> {{#i18n.Translations}}{{pph_label}}{{/i18n.Translations}} </th> </td>
<th> {{#i18n.Translations}}{{ppd_label}}{{/i18n.Translations}} </th> <td class="post_td" align="center">
<th> {{#i18n.Translations}}{{total}}{{/i18n.Translations}} </th> </td>
</tr> <td class="board_td">
</thead> <table cellspacing="0" class="datatable" style="border-collapse: inherit;">
<tbody> <tr><th>posts today</th><th>post rate</th><th>board</th></tr>
{{#graph}} {{#graph}}
<tr> <tr><td class="right">{{Day}}</td><td class="right">{{Hour}} PPH</td><td><a href="{{prefix}}b/{{Board}}/"{{Board}}</td></tr>
<td> {{/graph}}
<a href="{{prefix}}b/{{Board}}/">{{Board}}</a> </table>
</td>
<td>
{{Hour}}
</td>
<td>
{{Day}}
</td>
<td>
{{All}}
</td> </td>
</tr> </tr>
{{/ graph}}
</tbody>
</table> </table>
</div>
</div>
</center>
</body> </body>
</html> </html>