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.

47 lines
1.6 KiB
Plaintext
Raw Normal View History

2015-08-05 07:45:16 -04: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 )
}}
2015-08-04 10:03:44 -04:00
<html>
<head>
2015-08-05 07:45:16 -04:00
<title> ukko / overboard </title>
2015-08-04 10:03:44 -04:00
<meta charset="utf-8" />
2015-10-08 11:55:58 -04:00
<link rel="stylesheet" href="{{prefix}}static/site.css" />
<link rel="stylesheet" href="{{prefix}}static/user.css" />
2016-01-20 12:16:30 -05:00
<script type="text/javascript" src="{{prefix}}static/nntpchan.js"></script>
</head>
<body>
2016-01-20 12:18:04 -05:00
<center>
<div id="nntpchan_banner">
</div>
</center>
2016-02-17 15:31:28 +01:00
<div class="board_header"> ukko / overboard </div>
2016-01-20 12:16:30 -05:00
<div id="ukko_threads">
2015-08-04 10:03:44 -04:00
{{#threads}}
2016-02-16 13:42:28 +01:00
<div class="thread" id="thread_{{OP.PostHash}}">
<div class="ukko_thread_header">
2016-02-15 16:50:52 -05:00
<p>Posted on <a href="{{{BoardURL}}}"><span class="ukko_boardname">{{OP.Board}}</span></a></p>
2016-02-15 16:55:36 -05:00
</div>
2015-09-04 16:47:52 -04:00
{{{OP.Truncate.RenderPost}}}
{{#Truncate.Replies}}
{{{Truncate.RenderPost}}}
{{/Truncate.Replies}}
2016-02-15 21:20:37 +01:00
<hr />
2015-08-04 10:03:44 -04:00
</div>
{{/threads}}
2016-01-20 12:08:01 -05:00
</div>
2016-01-20 12:16:30 -05:00
<script type="text/javascript" >
2016-01-20 12:08:01 -05:00
var e = document.getElementById("nntpchan_banner");
2016-01-20 12:09:55 -05:00
nntpchan_inject_banners(e, "{{prefix}}");
2016-01-20 12:13:14 -05:00
2016-01-20 12:08:01 -05:00
</script>
<hr/>
2016-02-17 14:13:58 -05:00
<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>
2015-08-04 10:03:44 -04:00
</body>
</html>