-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage.mustache
45 lines (44 loc) · 1.74 KB
/
page.mustache
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Linux/Unix Distro Ratings {{title}}</title>
<link rel="stylesheet" href="/css/minimal.css">
<meta name="viewport" content="width=device-width">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<a href="https://github.com/distroratings/distroratings.github.io"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
<div class="wrapper">
<header>
<h3><a href="/">Distro Ratings</a></h3>
<p>Linux/Unix distribution ratings updated on {{date}}</p>
<p>
<div style="overflow-y: scroll; height: 700px">
<table>
<tbody>
<tr>
<th>Rank</th>
<th>Name</th>
</tr>
{{# ratings}}
<tr>
<td>#{{rating}}</td>
<td><a href="/pages/{{page}}.html">{{name}}</a>
</tr>
{{/ ratings}}
</tbody>
</table>
</div>
</p>
<p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</header>
<section>
{{{body}}}
</section>
</div>
</body>
</html>