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/frontpage.mustache
2017-10-17 08:24:53 -04:00

40 lines
1.9 KiB
Plaintext

{{!
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 )
}}
<!doctype html>
<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">
<head>
<meta lang="{{i18n.Name}}" />
<link rel="stylesheet" href="{{prefix}}static/krane.css" />
<link rel="stylesheet" href="{{prefix}}static/user.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<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"/>
<title> CHANGOLIA </title>
</head>
<body>
<center>
<a href="{{prefix}}o/?lang={{i18n.Name}}"><img id="logo" src="{{prefix}}static/changolia-logo.png" /><h1>Enter</h1></a>
<a href="{{prefix}}boards.html"><h2>Board List</h2></a>
<a href="{{prefix}}static/faq.html">FAQ</a>
</center>
<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>