Archived
1
0
This commit is contained in:
Jeff Becker 2016-08-01 07:34:35 -04:00
parent d91b0d3e99
commit 5155205e8c

View File

@ -16,66 +16,64 @@
<script src="{{prefix}}static/nntpchan.js" type="text/javascript"></script> <script src="{{prefix}}static/nntpchan.js" type="text/javascript"></script>
<title> {{frontend}} on nntpchan </title> <title> {{frontend}} on nntpchan </title>
</head> </head>
<body onload="main()"> <body>
{{{navbar}}} {{{navbar}}}
<center> <center>
<div class="index-outer"> <div class="index-outer">
<div class="index-inner"> <div id="nntpchan_banner">
<h1> {{frontend}} on nntpchan </h1> </div>
<h2>View the <a href="ukko.html">overboard</a></h2> <div class="index-inner">
<h3>Read the <a href="{{prefix}}static/faq.html">FAQ</a></h3> <div>{{frontend}} on nntpchan</div>
<h3>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></h3> <div>View the <a href="{{prefix}}ukko.html">overboard</a></div>
<h3>Lurk on <a href="irc://allyour4nert7pkh.onion/overchan">URC</a></h3> <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>
<h3>Check out the <a href="{{prefix}}boards.html">board list</a></h3> <div>Check out the <a href="{{prefix}}boards.html">board list</a></div>
<h3>Fork on github: <a href="https://github.com/majestrate/nntpchan/">frontend</a> and <a href="https://github.com/majestrate/srndv2/">core</a></h3> <div>Fork on github: <a href="https://github.com/majestrate/nntpchan/">frontend</a> and <a href="https://github.com/majestrate/srndv2/">core</a></div>
<h4>We've Had {{totalposts}} Posts Since August 01 2015 </h4> <div>We've Had {{totalposts}} Posts Since August 01 2015 </div>
</div> </div>
<div id="nntpchan_banner"> <div class="index-inner">
</div> <table>
<div class="index-inner"> <tbody>
<table> <tr>
<tbody> <td class="posts_td">
<tr> {{{postsgraph}}}
<td class="posts_td"> </td>
{{{postsgraph}}} <td class="board_td">
</td> {{! todo: move boardgraph into its own file like postsgraph }}
<td class="board_td"> <table id="board_graph">
{{! todo: move boardgraph into its own file like postsgraph }} <thead>
<table id="board_graph">
<thead>
<tr>
<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>
</tr>
</thead>
<tbody>
{{# boardgraph}}
<tr> <tr>
<td> <th> {{#i18n.Translations}}{{board_label}}{{/i18n.Translations}} </th>
<a href="{{prefix}}{{Board}}-0.html">{{Board}}</a> <th> {{#i18n.Translations}}{{posts_hour}}{{/i18n.Translations}} </th>
</td> <th> {{#i18n.Translations}}{{posts_today}}{{/i18n.Translations}} </th>
<td> <th> {{#i18n.Translations}}{{total}}{{/i18n.Translations}} </th>
{{Hour}}
</td>
<td>
{{Day}}
</td>
<td>
{{All}}
</td>
</tr> </tr>
{{/ boardgraph}} </thead>
</tbody> <tbody>
</table> {{# boardgraph}}
</td> <tr>
</tr> <td>
</tbody> <a href="{{prefix}}{{Board}}-0.html">{{Board}}</a>
</table> </td>
{{{overview}}} <td>
{{Hour}}
</td>
<td>
{{Day}}
</td>
<td>
{{All}}
</td>
</tr>
{{/ boardgraph}}
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
{{{overview}}}
</div>
</div> </div>
</div>
</center> </center>
<script type="text/javascript"> <script type="text/javascript">
var e = document.getElementById("nntpchan_banner"); var e = document.getElementById("nntpchan_banner");
@ -83,8 +81,8 @@
</script> </script>
<hr/> <hr/>
<footer> <footer>
<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">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> <p class="legal">To make a DMCA request or report illegal content, please contact the administration</p>
</footer> </footer>
</body> </body>
</html> </html>