diff options
author | Jayaram R Pai | 2014-09-20 19:42:34 +0530 |
---|---|---|
committer | Jayaram R Pai | 2014-09-20 19:42:34 +0530 |
commit | a254d1aa4d10d0704c9f8981400257b17c52022b (patch) | |
tree | 262b8ab89a0549f3f4de0201d164678d27e13faa /static/website/templates/base.html | |
parent | bf059d176357efa0a61d1939a5f29e598505b77f (diff) | |
download | scipy2014-a254d1aa4d10d0704c9f8981400257b17c52022b.tar.gz scipy2014-a254d1aa4d10d0704c9f8981400257b17c52022b.tar.bz2 scipy2014-a254d1aa4d10d0704c9f8981400257b17c52022b.zip |
completed CFP - basic testing done
Diffstat (limited to 'static/website/templates/base.html')
-rwxr-xr-x | static/website/templates/base.html | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/static/website/templates/base.html b/static/website/templates/base.html index 02e685c..051b9e6 100755 --- a/static/website/templates/base.html +++ b/static/website/templates/base.html @@ -1,4 +1,5 @@ {% load static %} +{% load dajaxice_templatetags %} {% load tags %} <!DOCTYPE html> <html lang="en"> @@ -7,6 +8,7 @@ <title>SciPy India 2014</title> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> <link rel="stylesheet" href="{% static 'website/css/main.css'%}"> + {% dajaxice_js_import %} </head> <body> <div id="page-wrapper"> @@ -90,18 +92,10 @@ </div> <!-- /#social --> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> +<script src="{% static 'dajax/jquery.dajax.core.js' %}"></script> <script src="{% static 'website/js/holder.js' %}"></script> +<script src="{% static 'website/js/main.js' %}"></script> <script type="text/javascript" charset="utf-8"> - $('#sidebar .nav-group').affix({ - offset: { - top: 200 - } - }); - - $("body").scrollspy({ - target: '#sidebar', - offset: 30 - }); </script> </body> </html> |