stubbed out go handlers

This commit is contained in:
sm
2013-05-08 22:57:52 -07:00
parent aff09ed2a1
commit 60fc35e6c8
3 changed files with 19 additions and 4 deletions
+4 -4
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ title }}</title>
<title>Mardson's Math Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="{% static "math.css" %}" rel="stylesheet" media="screen">
<link href="/math.css" rel="stylesheet" media="screen">
</head>
<body>
<section id="content">
@@ -17,7 +17,7 @@
<footer>
score: <span id="score"></span>
</footer>
<script src="{% static 'jquery-2.0.0.min.js' %}"></script>
<script src="{% static "math.js" %}"></script>
<script src="/jquery-2.0.0.min.js"></script>
<script src="/math.js"></script>
</body>
</html>