This repository has been archived on 2023-08-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
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-12-23 01:02:11 +01:00
|
|
|
}}
|
|
|
|
|
<!doctype html>
|
2015-08-04 10:03:44 -04:00
|
|
|
<html>
|
|
|
|
|
<head>
|
2015-12-23 01:02:11 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="/static/user.css">
|
|
|
|
|
<title>ukko/overboard</title>
|
|
|
|
|
</head>
|
2015-08-04 10:03:44 -04:00
|
|
|
<body>
|
2015-12-23 01:02:11 +01:00
|
|
|
<a href="/">frontpage</a>
|
|
|
|
|
{{#threads}}
|
|
|
|
|
<hr>
|
|
|
|
|
<p>posted on <a href="{{{BoardURL}}}">{{OP.Board}}</a></p>
|
|
|
|
|
<dl>
|
|
|
|
|
{{{OP.Truncate.RenderPost}}}
|
|
|
|
|
{{#Truncate.Replies}}
|
|
|
|
|
{{{Truncate.RenderPost}}}
|
|
|
|
|
{{/Truncate.Replies}}
|
|
|
|
|
</dl>
|
|
|
|
|
{{/threads}}
|
2015-08-04 10:03:44 -04:00
|
|
|
</body>
|
|
|
|
|
</html>
|