using static template tags

This commit is contained in:
Stephen McQuay 2013-04-24 00:25:21 -07:00
parent b3f3a7387f
commit fbaaecd2af
1 changed files with 4 additions and 3 deletions

View File

@ -1,9 +1,10 @@
{% load staticfiles %}
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<title>{{ title }}</title> <title>{{ title }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/static/math.css" rel="stylesheet" media="screen"> <link href="{% static "math.css" %}" rel="stylesheet" media="screen">
</head> </head>
<body> <body>
<section id="content"> <section id="content">
@ -17,7 +18,7 @@
<footer> <footer>
score: <span id="score"></span> score: <span id="score"></span>
</footer> </footer>
<script src="/static/jquery-2.0.0.min.js"></script> <script src="{% static 'jquery-2.0.0.min.js' %}"></script>
<script src="/static/math.js"></script> <script src="{% static "math.js" %}"></script>
</body> </body>
</html> </html>