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

87 lines
3.4 KiB
Plaintext
Raw Normal View History

2017-04-19 04:42:46 +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 )
}}
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
2017-10-17 17:15:58 +05:00
"http://www.w3.org/TR/html4/strict.dtd">
2017-10-17 17:06:50 +05:00
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{i18n.Name}}" xml:lang="{{i18n.Name}}" prefix="og: http://ogp.me/ns# fb: https://www.facebook.com/2008/fbml">
2017-04-19 04:42:46 +05:00
<head>
<title>overboard</title>
2017-10-17 17:15:58 +05:00
<meta lang="{{i18n.Name}}">
2017-04-19 04:42:46 +05:00
<meta http-equiv="content-type" content="text/html; charset=utf-8">
2017-07-27 18:42:04 +05:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
2017-04-19 04:42:46 +05:00
<link rel="stylesheet" href="{{prefix}}static/krane.css" />
2017-04-19 19:19:59 +05:00
<link rel="stylesheet" href="{{prefix}}static/user.css" />
<script type="text/javascript" src="{{prefix}}static/overchan.js"></script>
2017-04-19 20:43:09 +05:00
<meta property="og:site_name" content="changolia" />
<meta property="og:type" content="website"/>
2017-04-19 20:50:11 +05:00
<meta property="og:title" content="overboard"/>
<meta property="og:description" content="changolia overboard"/>
2017-10-10 21:34:39 +05:00
<meta property="og:url" content="{{prefix}}o/?lang={{i18n.Name}}"/>
2017-04-19 20:43:09 +05:00
<meta property="og:image"
content="{{prefix}}static/changolia-logo.png"/>
2017-04-19 04:42:46 +05:00
</head>
2017-04-19 17:20:55 +05:00
<body class="overboard">
2017-04-19 19:19:59 +05:00
{{{ navbar }}}
2017-04-19 04:42:46 +05:00
<hr />
2017-04-19 17:55:52 +05:00
<div class="sitetitle">
<h2><a href="#">CHANGOLIA</a></h2>
<b>Most of the rest of the wild west.</b>
</div>
2017-04-19 05:13:51 +05:00
<div id="paginator">
{{#prev}}
<span id="prev">
2017-10-10 21:34:39 +05:00
<a href="{{prefix}}o/{{no}}/?lang={{i18n.Name}}">previous</a>
2017-04-19 05:13:51 +05:00
</span>
{{/prev}}
{{#next}}
<span id="next">
2017-10-10 21:34:39 +05:00
<a href="{{prefix}}o/{{no}}/?lang={{i18n.Name}}">next</a>
2017-04-19 05:13:51 +05:00
</span>
{{/next}}
</div>
2017-04-19 04:42:46 +05:00
{{#threads}}
2018-03-09 17:01:33 +05:00
{{#BumpLock}}
<div class="thread bumplock" id="thread_{{OP.PostHash}}">
{{^BumpLock}}
2017-04-19 20:05:32 +05:00
<div class="thread" id="thread_{{OP.PostHash}}">
2018-03-09 17:01:33 +05:00
{{/BumpLock}}
{{#Truncate}}
2017-10-10 22:30:54 +05:00
Posted on <a href="{{BoardURL}}">{{Board}}</a>
2017-04-19 17:20:55 +05:00
<br />
2017-04-19 04:50:00 +05:00
{{{OP.RenderTruncatedPost}}}
2017-04-19 16:03:36 +05:00
<div class="excluded">{{MissingPostCount}} posts excluded</div>
2017-04-19 04:42:46 +05:00
{{#Replies}}
2017-04-19 04:50:00 +05:00
{{{RenderTruncatedPost}}}
2017-04-19 04:42:46 +05:00
{{/Replies}}
</div>
<hr style="clear: both;">
2017-04-19 04:50:00 +05:00
{{/Truncate}}
2017-07-27 18:46:01 +05:00
{{/threads}}
2017-07-27 18:44:01 +05:00
<div id="paginator">
{{#prev}}
<span id="prev">
2017-10-10 21:34:39 +05:00
<a href="{{prefix}}o/{{no}}/?lang={{i18n.Name}}">previous</a>
2017-07-27 18:44:01 +05:00
</span>
{{/prev}}
{{#next}}
<span id="next">
2017-10-10 21:34:39 +05:00
<a href="{{prefix}}o/{{no}}/?lang={{i18n.Name}}">next</a>
2017-07-27 18:44:01 +05:00
</span>
{{/next}}
</div>
2017-07-27 18:46:01 +05:00
<hr />
2017-04-19 04:42:46 +05:00
<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>
2017-04-19 20:05:32 +05:00
<script type="text/javascript">
ready();
</script>
2017-04-19 04:42:46 +05:00
</body>
</html>