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/default/frontpage.mustache

89 lines
3.5 KiB
Plaintext
Raw Normal View History

2015-08-06 23:32:20 +05:00
{{!
frontpage.mustache -- template for index.html
template parameters:
2016-02-22 17:32:49 +05:00
- boardgraph ( markup of boardPageRows instance, see srnd/model.go )
- postgraph ( markup of postsGraph instance , see srnd/model.go )
- overview ( markup of overviewModel instance , see srnd/model.go )
2015-08-06 23:32:20 +05:00
- totalposts ( the number of total posts we have ever seen )
- frontend ( the name of the frontend )
- prefix ( the site's prefix )
}}
<html>
<head>
2015-11-20 06:33:24 +05:00
<link rel="stylesheet" href="{{prefix}}static/site.css" />
2016-03-08 06:25:29 +05:00
<link id="current_theme" rel="stylesheet" href="{{prefix}}static/user.css" />
2016-01-20 22:16:30 +05:00
<script src="{{prefix}}static/nntpchan.js" type="text/javascript"></script>
2015-08-06 23:32:20 +05:00
<title> {{frontend}} on nntpchan </title>
</head>
2016-08-01 16:34:35 +05:00
<body>
2016-03-08 18:42:52 +05:00
{{{navbar}}}
2015-08-06 23:32:20 +05:00
<center>
2016-08-01 16:34:35 +05:00
<div class="index-outer">
<div id="nntpchan_banner">
</div>
<div class="index-inner">
<div>{{frontend}} on nntpchan</div>
<div>View the <a href="{{prefix}}ukko.html">overboard</a></div>
<div>Join the IRC on <a href="https://qchat.rizon.net/?channels=#nntpchan">rizon</a> or <a href="irc://127.0.0.1:6668/overchan">irc2p</a></div>
<div>Check out the <a href="{{prefix}}boards.html">board list</a></div>
<div>Fork on github: <a href="https://github.com/majestrate/nntpchan/">frontend</a> and <a href="https://github.com/majestrate/srndv2/">core</a></div>
<div>We've Had {{totalposts}} Posts Since August 01 2015 </div>
</div>
<div class="index-inner">
<table>
<tbody>
<tr>
<td class="posts_td">
{{{postsgraph}}}
</td>
<td class="board_td">
{{! todo: move boardgraph into its own file like postsgraph }}
<table id="board_graph">
<thead>
2015-10-31 20:25:29 +05:00
<tr>
2016-08-01 16:34:35 +05:00
<th> {{#i18n.Translations}}{{board_label}}{{/i18n.Translations}} </th>
<th> {{#i18n.Translations}}{{posts_hour}}{{/i18n.Translations}} </th>
<th> {{#i18n.Translations}}{{posts_today}}{{/i18n.Translations}} </th>
<th> {{#i18n.Translations}}{{total}}{{/i18n.Translations}} </th>
2015-10-31 20:25:29 +05:00
</tr>
2016-08-01 16:34:35 +05:00
</thead>
<tbody>
{{# boardgraph}}
<tr>
<td>
<a href="{{prefix}}{{Board}}-0.html">{{Board}}</a>
</td>
<td>
{{Hour}}
</td>
<td>
{{Day}}
</td>
<td>
{{All}}
</td>
</tr>
{{/ boardgraph}}
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
{{{overview}}}
</div>
2015-08-06 23:32:20 +05:00
</div>
</center>
2016-01-20 22:16:30 +05:00
<script type="text/javascript">
2016-01-20 22:08:01 +05:00
var e = document.getElementById("nntpchan_banner");
2016-01-20 22:09:55 +05:00
nntpchan_inject_banners(e, "{{prefix}}");
2016-01-20 22:08:01 +05:00
</script>
<hr/>
2016-02-18 00:13:58 +05:00
<footer>
2016-08-01 16:34:35 +05:00
<p class="legal">All posts on this site are the responsibility of the individual poster and not the administration, pursuant to 47 U.S.C. § 230.</p>
<p class="legal">To make a DMCA request or report illegal content, please contact the administration</p>
2016-02-18 00:13:58 +05:00
</footer>
2015-08-06 23:32:20 +05:00
</body>
2015-11-09 07:18:49 +05:00
</html>