-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.template.html
44 lines (44 loc) · 1.55 KB
/
index.template.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dodicesimo compleanno di Wikisource</title>
<script type="text/javascript" src="//tools-static.wmflabs.org/cdnjs/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="//tools-static.wmflabs.org/cdnjs/ajax/libs/twitter-bootstrap/3.3.5/css/bootstrap.min.css">
<script type="text/javascript" src="//tools-static.wmflabs.org/cdnjs/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script type="text/javascript" src="//tools-static.wmflabs.org/cdnjs/ajax/libs/jquery.tablesorter/2.24.6/js/jquery.tablesorter.min.js"></script>
<script type="text/javascript" src="//tools-static.wmflabs.org/cdnjs/ajax/libs/jquery.tablesorter/2.24.6/js/jquery.tablesorter.widgets.min.js"></script>
<script type="text/javascript">
$( function () {
$( '#score' ).tablesorter( {
headerTemplate: '{content} {icon}',
sortList: [ [ 1, 1 ] ],
theme: 'bootstrap',
widgets: [ 'uitheme' ]
} );
} );
</script>
</head>
<body>
<div class="container">
<h1>Tredicesimo compleanno di Wikisource</h1>
<p>{{{aggiornamento}}}</p>
<table id="score" class="table table-striped">
<thead>
<tr>
<th>Nome</th>
<th>Punti</th>
<th>Vali</th>
<th>Revi</th>
<th>Revi2</th>
<th>Revi3</th>
<th>Revi5</th>
</tr>
</thead>
<tbody>
{{{rows}}}
</tbody>
</table>
</div>
</body>
</html>