diff options
author | jpope <jpope@jpope.org> | 2014-01-01 11:54:23 -0600 |
---|---|---|
committer | jpope <jpope@jpope.org> | 2014-01-01 11:54:23 -0600 |
commit | 1e298b10c7cba2d27cb19f1aee03134f66ef6e20 (patch) | |
tree | 94a3e047c7291b18bd6908f74925df570d93025a | |
parent | 5970a855f619d29bb8a9119659411e551795ee67 (diff) | |
download | mediagoblin-1e298b10c7cba2d27cb19f1aee03134f66ef6e20.tar.lz mediagoblin-1e298b10c7cba2d27cb19f1aee03134f66ef6e20.tar.xz mediagoblin-1e298b10c7cba2d27cb19f1aee03134f66ef6e20.zip |
fix misplaced body tag when I moved the javascript to bottom of page
-rw-r--r-- | mediagoblin/templates/mediagoblin/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/templates/mediagoblin/base.html b/mediagoblin/templates/mediagoblin/base.html index 69b28685..93086205 100644 --- a/mediagoblin/templates/mediagoblin/base.html +++ b/mediagoblin/templates/mediagoblin/base.html @@ -169,7 +169,6 @@ </div> {%- endblock mediagoblin_body %} {% include 'mediagoblin/bits/body_end.html' %} - </body> <script type="text/javascript" src="{{ request.staticdirect('/js/extlib/jquery.js') }}"></script> <script type="text/javascript" @@ -179,4 +178,5 @@ <script> var mark_all_comments_seen_url = "{{ request.urlgen('mediagoblin.notifications.mark_all_comment_notifications_seen') }}" </script> + </body> </html> |