2017-04-19 04:42:46 +05:00
|
|
|
{{!
|
|
|
|
frontpage.mustache -- template for index.html
|
|
|
|
template parameters:
|
|
|
|
- boardgraph ( markup of boardPageRows instance, see srnd/model.go )
|
|
|
|
- postgraph ( markup of postsGraph instance , see srnd/model.go )
|
|
|
|
- overview ( markup of overviewModel instance , see srnd/model.go )
|
|
|
|
- totalposts ( the number of total posts we have ever seen )
|
|
|
|
- frontend ( the name of the frontend )
|
|
|
|
- prefix ( the site's prefix )
|
|
|
|
}}
|
2017-10-17 17:24:53 +05:00
|
|
|
<!doctype html>
|
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>
|
2017-10-17 17:15:58 +05:00
|
|
|
<meta lang="{{i18n.Name}}" />
|
2017-04-19 18:49:13 +05:00
|
|
|
<link rel="stylesheet" href="{{prefix}}static/krane.css" />
|
|
|
|
<link rel="stylesheet" href="{{prefix}}static/user.css" />
|
2017-07-27 18:42:04 +05:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2017-04-19 21:08:48 +05:00
|
|
|
<meta property="og:site_name" content="changolia" />
|
|
|
|
<meta property="og:type" content="website"/>
|
|
|
|
<meta property="og:title" content="changolia"/>
|
|
|
|
<meta property="og:description" content="Most of the rest of the wild west"/>
|
|
|
|
<meta property="og:url" content="{{prefix}}"/>
|
|
|
|
<meta property="og:image"
|
|
|
|
content="{{prefix}}static/changolia-logo.png"/>
|
2017-04-19 17:55:52 +05:00
|
|
|
<title> CHANGOLIA </title>
|
2017-04-19 04:42:46 +05:00
|
|
|
</head>
|
|
|
|
<body>
|
2017-04-19 17:55:52 +05:00
|
|
|
<center>
|
2018-11-25 17:12:26 +05:00
|
|
|
<img id="logo" src="{{prefix}}static/changolia-logo.png" />
|
2018-11-25 17:09:34 +05:00
|
|
|
<a href="{{prefix}}b/"><h2>Board List</h2></a>
|
2018-11-25 17:12:26 +05:00
|
|
|
<a href="{{prefix}}o/?lang={{i18n.Name}}">Firehose</a>
|
2017-04-22 19:14:51 +05:00
|
|
|
<a href="{{prefix}}static/faq.html">FAQ</a>
|
2018-11-25 17:09:34 +05:00
|
|
|
|
2017-04-19 17:55:52 +05:00
|
|
|
</center>
|
2017-04-19 04:42:46 +05:00
|
|
|
<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>
|
|
|
|
</body>
|
|
|
|
</html>
|