82 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
{{!
 | 
						|
  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 )
 | 
						|
                 }}
 | 
						|
 | 
						|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
 | 
						|
          "http://www.w3.org/TR/html4/strict.dtd">
 | 
						|
<html prefix="og: http://ogp.me/ns# fb: https://www.facebook.com/2008/fbml">
 | 
						|
    <head>
 | 
						|
        <title>overboard</title>
 | 
						|
        <meta http-equiv="content-type" content="text/html; charset=utf-8">
 | 
						|
        <meta name="viewport" content="width=device-width, initial-scale=1" />
 | 
						|
        <link rel="stylesheet" href="{{prefix}}static/krane.css" />
 | 
						|
        <link rel="stylesheet" href="{{prefix}}static/user.css" />
 | 
						|
        <script type="text/javascript" src="{{prefix}}static/overchan.js"></script>
 | 
						|
        <meta property="og:site_name" content="changolia" />
 | 
						|
        <meta property="og:type" content="website"/>
 | 
						|
        <meta property="og:title" content="overboard"/>
 | 
						|
        <meta property="og:description" content="changolia overboard"/>
 | 
						|
        <meta property="og:url" content="{{prefix}}o/"/>
 | 
						|
        <meta property="og:image"
 | 
						|
              content="{{prefix}}static/changolia-logo.png"/>
 | 
						|
    </head>
 | 
						|
    <body class="overboard">
 | 
						|
        {{{ navbar }}}
 | 
						|
        <hr />
 | 
						|
 | 
						|
        <div class="sitetitle">
 | 
						|
            <h2><a href="#">CHANGOLIA</a></h2>
 | 
						|
            <b>Most of the rest of the wild west.</b>
 | 
						|
        </div>
 | 
						|
        <div id="paginator">
 | 
						|
            {{#prev}}
 | 
						|
                <span id="prev">
 | 
						|
                    <a href="{{prefix}}o/{{no}}/">previous</a>
 | 
						|
                </span>
 | 
						|
            {{/prev}}
 | 
						|
            {{#next}}
 | 
						|
                <span id="next">
 | 
						|
                    <a href="{{prefix}}o/{{no}}/">next</a>
 | 
						|
                </span>
 | 
						|
            {{/next}}
 | 
						|
        </div>
 | 
						|
        {{#threads}}
 | 
						|
            {{#Truncate}}
 | 
						|
            <div class="thread" id="thread_{{OP.PostHash}}">
 | 
						|
                Posted on <a href="{{BoardURL}}">{{Board}}</a>
 | 
						|
                <br />
 | 
						|
                {{{OP.RenderTruncatedPost}}}
 | 
						|
                <div class="excluded">{{MissingPostCount}} posts excluded</div>
 | 
						|
                {{#Replies}}
 | 
						|
                    {{{RenderTruncatedPost}}}
 | 
						|
                {{/Replies}}
 | 
						|
            </div>
 | 
						|
            <hr style="clear: both;">
 | 
						|
            {{/Truncate}}
 | 
						|
        {{/threads}}      
 | 
						|
        <div id="paginator">
 | 
						|
            {{#prev}}
 | 
						|
                <span id="prev">
 | 
						|
                    <a href="{{prefix}}o/{{no}}/">previous</a>
 | 
						|
                </span>
 | 
						|
            {{/prev}}
 | 
						|
            {{#next}}
 | 
						|
                <span id="next">
 | 
						|
                    <a href="{{prefix}}o/{{no}}/">next</a>
 | 
						|
                </span>
 | 
						|
            {{/next}}
 | 
						|
        </div>
 | 
						|
        <hr />
 | 
						|
        <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>
 | 
						|
        <script type="text/javascript">
 | 
						|
         ready();
 | 
						|
        </script>
 | 
						|
    </body>
 | 
						|
</html>
 |