summaryrefslogtreecommitdiffstats
path: root/templates/base.html
diff options
context:
space:
mode:
authorAamir Khan <syst3m.w0rm@gmail.com>2012-06-24 16:52:23 -0400
committerAamir Khan <syst3m.w0rm@gmail.com>2012-06-24 16:52:23 -0400
commit00f021987e466c67aba3d925a49e2975d0e431b0 (patch)
tree325c5a83211ab659da198effe29f5bdef70875a4 /templates/base.html
parent8e325c2250b8a7eaa75c2e988cbf7af4e596d0c0 (diff)
Template refactoring: Rating now works on threads and message page
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/base.html b/templates/base.html
index 48d4809..3d51c0d 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -1,6 +1,5 @@
<!DOCTYPE HTML>
<html>
-
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="ROBOTS" content="INDEX, FOLLOW" />
@@ -41,10 +40,12 @@
{% endblock %}
</div>
<!-- End of Header -->
-
- {% block content %} {% endblock %}
+ <div id="content">
+ {% block content %} {% endblock %}
+ </div>
{% block footer %} {% endblock %}
</body>
+
<script src="{{ STATIC_URL }}/js/libs/jquery-1.7.1.min.js"></script>
{% block additionaljs %} {% endblock %}
</html>