mmg/templates/index.html

22 lines
772 B
HTML
Raw Normal View History

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">
<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>
<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>
<script src="/static/jquery-2.0.0.min.js"></script>
2013-04-23 22:48:16 -07:00
<script src="/static/django-csrf.js"></script>
2013-04-23 18:02:59 -07:00
<script src="/static/math.js"></script>
</body>
</html>