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

42 lines
1.9 KiB
Plaintext
Raw Normal View History

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-04-19 21:08:48 +05:00
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"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>
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>
2017-04-22 19:14:51 +05:00
<a href="{{prefix}}o/"><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>
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>