]> de.git.xonotic.org Git - xonotic/xonstat.git/blob - xonstat/templates/base.mako
Remove styling for a lot of things. Add leaderboard and recent-games elements
[xonotic/xonstat.git] / xonstat / templates / base.mako
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2 <html>
3     <head>
4         <title><%block name="title">XonStat - Player Statistics for Xonotic</%block></title>
5         <%block name="css">
6         <link rel="stylesheet" href="/static/css/normalize.css" type="text/css" media="screen" />
7         <link rel="stylesheet" href="/static/css/style.css" type="text/css" media="screen" />
8         </%block>
9         <%block name="js">
10         </%block>
11     </head>
12     <body>
13         <div id="header">
14             <%block name="header">
15             <h1><a href="/" title="Home Page">XonStat</a></h1>
16             <h3>Player Statistics for Xonotic</h3>
17             </%block>
18             <ul id="nav">
19                 <li><a href="/games" title="Game Index">games</a></li>
20                 <li><a href="" title="Map Index">maps</a></li>
21                 <li><a href="" title="Server Index">servers</a></li>
22             </ul>
23         </div> <!-- END HEADER -->
24         <div id="main">
25             ${self.body()}
26         </div> <!-- END MAIN -->
27         <div id="footer">
28             <%block name="footer">
29             <p>XonStat is a 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>
30             </%block>
31         </div> <!-- END FOOTER -->
32     </body>
33 </html>