]> de.git.xonotic.org Git - xonotic/xonstat.git/blob - xonstat/templates/base.mako
Center the footer.
[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     <%block name="css">
21     <link href="../assets/css/bootstrap-responsive.css" rel="stylesheet">
22     <link href="/static/css/style.css" rel="stylesheet">
23     </%block>
24   </head>
25
26   <body>
27     <%block name="navigation">
28     ${nav.nav("leaderboard")}
29     </%block>
30
31     <div class="container">
32
33       <%block name="hero_unit">
34       </%block>
35
36       <div class="row">
37         <div class="span12" id="xonborder">
38           <div id="title"><%block name="title"></%block></div>
39             ${self.body()}
40         </div> <!-- /xonborder -->
41       </div> <!-- /main row -->
42
43       <%block name="footer">
44       <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>
45       </%block>
46
47       <%block name="js">
48       </%block>
49     </body>
50 </html>