2013-04-24 00:25:21 -07:00
|
|
|
{% load staticfiles %}
|
2013-04-23 18:02:59 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>{{ title }}</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2013-04-24 00:25:21 -07:00
|
|
|
<link href="{% static "math.css" %}" rel="stylesheet" media="screen">
|
2013-04-23 18:02:59 -07:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<section id="content">
|
2013-04-23 23:06:24 -07:00
|
|
|
<span class="number" id="first">0</span>
|
|
|
|
<span class="number" id="operation">+</span>
|
|
|
|
<span class="number" id="second">0</span>
|
|
|
|
<div>
|
2013-04-23 23:50:24 -07:00
|
|
|
<input id="answer" type="number" size="2" class="number" autofocus />
|
2013-04-23 22:48:16 -07:00
|
|
|
</div>
|
2013-04-23 18:02:59 -07:00
|
|
|
</section>
|
2013-04-23 23:27:30 -07:00
|
|
|
<footer>
|
|
|
|
score: <span id="score"></span>
|
|
|
|
</footer>
|
2013-04-24 00:25:21 -07:00
|
|
|
<script src="{% static 'jquery-2.0.0.min.js' %}"></script>
|
|
|
|
<script src="{% static "math.js" %}"></script>
|
2013-04-23 18:02:59 -07:00
|
|
|
</body>
|
|
|
|
</html>
|