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

49 lines
1.3 KiB
Plaintext
Raw Normal View History

2015-08-05 16:45:16 +05:00
{{!
board.mustache, displays the contents of page N of the board
template parameters:
- board ( the model of the current page )
- page ( the page number of the current page )
board has the properties:
- Prefix ( absolute path like //site.tld/ or /path/ )
- Board ( the name of the board )
2015-08-05 17:25:33 +05:00
- Navbar ( a function that renders the navbar, should not be escaped )
2015-08-05 16:45:16 +05:00
- Threads ( a list of Thread Models with the last few replies )
}}
2015-08-04 19:03:44 +05:00
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="{{board.Prefix}}static/site.css"></link>
<style src="{{board.Prefix}}static/user.css" type="text/css" />
2015-09-06 00:36:36 +05:00
<script type="text/javascript" src="{{board.Prefix}}static/nntpchan.js"></script>
2015-08-04 19:03:44 +05:00
<title>{{board.Board}}</title>
</head>
<body>
2015-08-05 17:25:33 +05:00
<!-- begin navbar -->
2015-08-05 16:45:16 +05:00
{{{board.Navbar}}}
2015-08-05 17:25:33 +05:00
<!-- end navbar -->
2015-08-04 19:03:44 +05:00
<!-- postform -->
<div id="postform_container">
{{{form}}}
</div>
<hr />
<div id="threads_container">
{{#board.Threads}}
<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>
<br/>
<hr/>
{{/board.Threads}}
</div>
</body>
</html>