]> de.git.xonotic.org Git - xonotic/xonstat.git/blob - xonstat/templates/base.mako
Make accuracy information expandable.
[xonotic/xonstat.git] / xonstat / templates / base.mako
1 <%namespace name="nav" file="nav.mako"/>
2 <!DOCTYPE html>
3 <html lang="en">
4   <head>
5     <meta charset="utf-8">
6     <title>XonStat: Player Statistics for Xonotic</title>
7     <meta name="description" content="">
8     <meta name="author" content="">
9
10     <!--[if lt IE 9]>
11       <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
12     <![endif]-->
13
14     <style type="text/css">
15       body {
16         padding-top: 60px;
17         padding-bottom: 40px;
18       }
19     </style>
20
21     <%block name="css">
22     <link href="../assets/css/bootstrap-responsive.css" rel="stylesheet">
23     <link href="/static/css/style.min.css" rel="stylesheet">
24     </%block>
25   </head>
26
27   <body>
28     <%block name="navigation">
29     ${nav.nav("leaderboard")}
30     </%block>
31
32     <div class="container">
33
34       <%block name="hero_unit">
35       </%block>
36
37       <div class="row">
38         <div class="span12" id="xonborder">
39           <div id="title"><%block name="title"></%block></div>
40             ${self.body()}
41         </div> <!-- /xonborder -->
42       </div> <!-- /main row -->
43
44       <%block name="footer">
45       <p class="pagination-centered">XonStat is an open source (GPLv2) project created by Antibody. Fork it <a href="https://github.com/antzucaro/XonStat" title="Go to the project page">on Github!</a></p>
46       </%block>
47
48       <%block name="js">
49       </%block>
50     </body>
51 </html>