]> git.xonotic.org Git - xonotic/xonstat.git/commitdiff
Port the footer.
authorAnt Zucaro <azucaro@gmail.com>
Sat, 28 Feb 2015 21:57:17 +0000 (16:57 -0500)
committerAnt Zucaro <azucaro@gmail.com>
Sat, 28 Feb 2015 21:57:17 +0000 (16:57 -0500)
xonstat/templates/base.mako
xonstat/templates/footer.mako [new file with mode: 0644]

index a30dff123472f9240692f5c9c36a88fa363fe753..281b582df0762237a4f3b4af5c5112f5c59c93b1 100644 (file)
@@ -1,4 +1,6 @@
 <%namespace name="nav" file="nav.mako"/>
+<%namespace name="footer" file="footer.mako" />
+
 <!DOCTYPE html>
 <html lang="en">
   <head>
       </div> <!-- /xonborder -->
     </div> <!-- /row -->
 
-    <%block name="footer">
-      <div class="row">
-        <div class="small-1 large-12 columns">
-          <p class="text-center" >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>
-        </div>
-      </div>
-    </%block>
+    ${footer.footer()}
 
     <%block name="js">
      <script type='text/javascript' src='//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js'></script>
diff --git a/xonstat/templates/footer.mako b/xonstat/templates/footer.mako
new file mode 100644 (file)
index 0000000..2f9f45a
--- /dev/null
@@ -0,0 +1,47 @@
+<%def name="footer()">
+
+<div id="footer">
+  <div class="row" >
+
+    <div class="small-12 medium-3 columns">
+      <h4>Home</h4>
+      <ul>
+        <li><a href="http://www.xonotic.org/download" title="get the game">Download</a></li>
+        <li><a href="http://www.xonotic.org/posts/" title="read the blog">Blog</a></li>
+        <li><a href="/" title="see latest game and player statistics">Stats</a></li>
+        <li><a href="http://www.xonotic.org/team/" title="meet team xonotic">Team Xonotic</a></li>
+        <li><a href="http://www.xonotic.org/faq/" title="read the faq">FAQ</a></li>
+      </ul>
+    </div>
+
+    <div class="small-12 medium-3 columns">
+      <h4>Media</h4>
+      <ul>
+        <li><a href="http://www.xonotic.org/images/" title="view images and screenshots of Xonotic">Screenshots</a></li>
+        <li><a href="http://www.xonotic.org/videos/" title="view videos about Xonotic">Videos</a></li>
+      </ul>
+    </div>
+
+    <div class="small-12 medium-3 columns">
+      <h4>Development</h4>
+      <ul>
+        <li><a href="https://gitlab.com/groups/xonotic" title="source code">Source code (git)</a></li>
+        <li><a href="https://gitlab.com/groups/xonotic/issues?project_id=&amp;scope=all&amp;state=opened" title="development tracker">Issue Tracker</a></li>
+        <li><a href="https://gitlab.com/xonotic/xonotic/wikis/home" title="Wiki">Wiki</a></li>
+      </ul>
+    </div>
+
+    <div class="small-12 medium-3 columns">
+        <h4>Forums</h4>
+        <ul>
+          <li><a href="http://forums.xonotic.org/member.php?action=register" title="register for the forums">Register</a></li>
+          <li><a href="http://forums.xonotic.org/memberlist.php" title="view the forum member list">Member list</a></li>
+          <li><a href="http://forums.xonotic.org/misc.php?action=help" title="help">Help</a></li>
+          <li><a href="http://forums.xonotic.org/search.php" title="search the forums">Search</a></li>
+        <ul>
+    </div>
+
+  </div>
+</div>
+
+</%def>