Archived
1
0
This commit is contained in:
Jeff Becker 2017-04-18 19:50:00 -04:00
parent efcd18bc8a
commit f35d7b29e0
2 changed files with 12 additions and 8 deletions

View File

@ -10,7 +10,7 @@
- Board ( the name of the board ) - Board ( the name of the board )
- Navbar ( a function that renders the navbar, should not be escaped ) - Navbar ( a function that renders the navbar, should not be escaped )
- Threads ( a list of Thread Models with the last few replies ) - Threads ( a list of Thread Models with the last few replies )
}} }}
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd"> "http://www.w3.org/TR/html4/strict.dtd">
<html> <html>
@ -27,15 +27,17 @@
<b>decentralized and distributed</b> <b>decentralized and distributed</b>
</div> </div>
<center><b>{{Board.Name}}</b></center> <center><b>{{Board.Name}}</b></center>
{{{Postform}}} {{{form}}}
{{#Threads}} {{#Threads}}
{{#Truncate}}
<div class="thread"> <div class="thread">
{{{OP.RenderPost}}} {{{OP.RenderPost}}}
{{#Replies}} {{#Replies}}
{{{RenderPost}}} {{{RenderPost}}}
{{/Replies}} {{/Replies}}
</div> </div>
<hr style="clear: both;"> <hr style="clear: both;">
{{/Truncate}}
{{/Threads}} {{/Threads}}
<hr /> <hr />
<footer> <footer>

View File

@ -17,13 +17,15 @@
<hr /> <hr />
<center><b>OVERCHAN</b></center> <center><b>OVERCHAN</b></center>
{{#threads}} {{#threads}}
{{#Truncate}}
<div class="thread"> <div class="thread">
{{{OP.RenderPost}}} {{{OP.RenderTruncatedPost}}}
{{#Replies}} {{#Replies}}
{{{RenderPost}}} {{{RenderTruncatedPost}}}
{{/Replies}} {{/Replies}}
</div> </div>
<hr style="clear: both;"> <hr style="clear: both;">
{{/Truncate}}
{{/threads}} {{/threads}}
<hr /> <hr />
<footer> <footer>