Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/templates/placebo/boardlist.mustache

46 lines
1.9 KiB
Plaintext
Raw Normal View History

2017-04-19 04:42:46 +05:00
{{!
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 )
}}
2017-10-17 17:24:53 +05:00
<!doctype html>
2017-10-17 17:06:50 +05:00
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{i18n.Name}}" xml:lang="{{i18n.Name}}" prefix="og: http://ogp.me/ns# fb: https://www.facebook.com/2008/fbml">
2017-04-19 04:42:46 +05:00
<head>
2017-10-17 17:15:58 +05:00
<meta lang="{{i18n.Name}}">
2017-04-22 18:36:16 +05:00
<link rel="stylesheet" href="{{prefix}}static/krane.css"></link>
2017-10-17 17:06:50 +05:00
<link rel="stylesheet" href="{{prefix}}static/user.css"></link>
2017-04-19 04:42:46 +05:00
<title> {{frontend}} {{#i18n.Translations}}{{board_list_title}}{{/i18n.Translations}} </title>
2017-04-22 18:36:16 +05:00
<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"/>
2017-04-19 04:42:46 +05:00
</head>
<body>
2017-04-22 18:42:04 +05:00
<center>
2017-04-22 18:36:16 +05:00
<table class="activity" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
2017-04-22 18:42:04 +05:00
<!--
2017-04-22 18:36:16 +05:00
<td class="usage_td">
2017-04-19 04:42:46 +05:00
</td>
2017-04-22 18:36:16 +05:00
<td class="post_td" align="center">
2017-04-19 04:42:46 +05:00
</td>
2017-04-22 18:42:04 +05:00
-->
2017-04-22 18:36:16 +05:00
<td class="board_td">
<table cellspacing="0" class="datatable" style="border-collapse: inherit;">
<tr><th>posts today</th><th>post rate</th><th>board</th></tr>
{{#graph}}
2017-04-22 18:39:06 +05:00
<tr><td class="right">{{Day}}</td><td class="right">{{Hour}} PPH</td><td><a href="{{prefix}}b/{{Board}}/">{{Board}}</a></td></tr>
2017-04-22 18:36:16 +05:00
{{/graph}}
</table>
2017-04-19 04:42:46 +05:00
</td>
2017-04-22 18:36:16 +05:00
</tr>
</table>
2017-04-22 18:42:04 +05:00
</center>
2017-04-19 04:42:46 +05:00
</body>
</html>