2017-04-19 04:42:46 +05:00
|
|
|
{{!
|
|
|
|
ukko.mustache -- overboard, contains the last threads posted regardless of newsgroup
|
|
|
|
template parameters:
|
|
|
|
- prefix ( site prefix )
|
|
|
|
- threads ( a list of Thread Models that represent the latest threads )
|
|
|
|
}}
|
|
|
|
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
|
|
|
"http://www.w3.org/TR/html4/strict.dtd">
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>overboard</title>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
|
|
<link rel="stylesheet" href="{{prefix}}static/krane.css" />
|
2017-04-19 16:32:32 +05:00
|
|
|
<script type="text/javascript" src="/static/overchan.js"></script>
|
2017-04-19 04:42:46 +05:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<hr />
|
|
|
|
<center><b>OVERCHAN</b></center>
|
2017-04-19 05:13:51 +05:00
|
|
|
<div id="paginator">
|
|
|
|
{{#prev}}
|
|
|
|
<span id="prev">
|
|
|
|
<a href="{{prefix}}o/{{no}}/">previous</a>
|
|
|
|
</span>
|
|
|
|
{{/prev}}
|
|
|
|
{{#next}}
|
|
|
|
<span id="next">
|
|
|
|
<a href="{{prefix}}o/{{no}}/">next</a>
|
|
|
|
</span>
|
|
|
|
{{/next}}
|
|
|
|
</div>
|
2017-04-19 04:42:46 +05:00
|
|
|
{{#threads}}
|
2017-04-19 04:50:00 +05:00
|
|
|
{{#Truncate}}
|
2017-04-19 05:04:37 +05:00
|
|
|
Posted on <a href="{{BoardURL}}">{{Board}}</a>
|
|
|
|
<br />
|
2017-04-19 04:42:46 +05:00
|
|
|
<div class="thread">
|
2017-04-19 04:50:00 +05:00
|
|
|
{{{OP.RenderTruncatedPost}}}
|
2017-04-19 16:03:36 +05:00
|
|
|
<div class="excluded">{{MissingPostCount}} posts excluded</div>
|
2017-04-19 04:42:46 +05:00
|
|
|
{{#Replies}}
|
2017-04-19 04:50:00 +05:00
|
|
|
{{{RenderTruncatedPost}}}
|
2017-04-19 04:42:46 +05:00
|
|
|
{{/Replies}}
|
|
|
|
</div>
|
|
|
|
<hr style="clear: both;">
|
2017-04-19 04:50:00 +05:00
|
|
|
{{/Truncate}}
|
2017-04-19 04:42:46 +05:00
|
|
|
{{/threads}}
|
|
|
|
<hr />
|
|
|
|
<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">To make a DMCA request or report illegal content, please contact the administration</p>
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|