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/ukko.mustache

35 lines
1.1 KiB
Plaintext
Raw Normal View History

2015-08-05 16:45:16 +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 )
}}
2015-08-04 19:03:44 +05:00
<html>
<head>
2015-08-05 16:45:16 +05:00
<title> ukko / overboard </title>
2015-08-04 19:03:44 +05:00
<meta charset="utf-8" />
2015-10-08 20:55:58 +05:00
<link rel="stylesheet" href="{{prefix}}static/site.css" />
<link rel="stylesheet" href="{{prefix}}static/user.css" />
2015-09-05 02:18:36 +05:00
<script type="text/javascript" src="{{prefix}}static/nntpchan.js"></script>
</head>
2015-08-04 19:03:44 +05:00
<body>
<div id="ukko_threads" class="threads_container">
{{#threads}}
<div class="ukko_thread_header">
<p> Posted on <a href="{{{BoardURL}}}"><span class="ukko_boardname">{{OP.Board}}</span></a></p>
</div>
<div class="thread" id="thread_{{OP.PostHash}}">
<div clsss="thread_header">
</div>
2015-09-05 01:47:52 +05:00
{{{OP.Truncate.RenderPost}}}
{{#Truncate.Replies}}
{{{Truncate.RenderPost}}}
2015-08-04 19:03:44 +05:00
<br />
2015-09-05 01:47:52 +05:00
{{/Truncate.Replies}}
2015-08-04 19:03:44 +05:00
</div>
<hr/>
{{/threads}}
</div>
</body>
</html>