]> de.git.xonotic.org Git - xonotic/xonstat.git/blob - xonstat/templates/base.mako
Add issues and FAQ links.
[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> <br />Questions? Check the <a href="https://github.com/antzucaro/XonStat/wiki/FAQ" title="FAQ">FAQ</a> first. <br />Issues? Log them either <a href="http://dev.xonotic.org/projects/xonstat" title="Xonotic Redmin Issue Tracker">here</a> or <a href="https://github.com/antzucaro/XonStat/issues" title="GitHub issue tracker">here</a> - I check both!</p>
46       </%block>
47
48       <%block name="js">
49       </%block>
50
51       <script type="text/javascript">
52       var _gaq = _gaq || [];
53       _gaq.push(['_setAccount', 'UA-30391685-1']);
54       _gaq.push(['_trackPageview']);
55
56       (function() {
57         var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
58         ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
59         var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
60       })();
61     </script>
62
63     </body>
64 </html>