moved index, removed django reqs

This commit is contained in:
sm
2013-05-08 22:43:03 -07:00
parent adc8b8b2ef
commit 659251e87d
2 changed files with 0 additions and 3 deletions
+23
View File
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ title }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="{% static "math.css" %}" rel="stylesheet" media="screen">
</head>
<body>
<section id="content">
<span class="number" id="first">0</span>
<span class="number" id="operation">+</span>
<span class="number" id="second">0</span>
<div>
<input id="answer" type="number" size="2" class="number" autofocus />
</div>
</section>
<footer>
score: <span id="score"></span>
</footer>
<script src="{% static 'jquery-2.0.0.min.js' %}"></script>
<script src="{% static "math.js" %}"></script>
</body>
</html>