Commit 8781ee0c13cb67b505bdcd583bec25e1ef4a4144
1 parent
21a26e92
Exists in
master
and in
39 other branches
Adding external link and script to base.html
Adding css and js links from bootstrap and converse.js to base.html
Showing
1 changed file
with
8 additions
and
0 deletions
Show diff stats
src/colab/deprecated/templates/base.html
... | ... | @@ -4,6 +4,14 @@ |
4 | 4 | |
5 | 5 | <!-- Framework CSS --> |
6 | 6 | |
7 | + <link rel="stylesheet" href="{{ STATIC_URL }}third-party/dist/css/bootstrap.css" type="text/css" media="screen, projection" /> | |
8 | + | |
9 | + <link rel="stylesheet" href="{{ STATIC_URL }}third-party/converse.js/converse.css" type="text/css" media="screen, projection" /> | |
10 | + | |
11 | + <script data-main="{{ STATIC_URL }}third-party/dist/css/bootstrap.js" src="{{ STATIC_URL }}third-party/converse.js/Libraries/require-jquery.js"></script> | |
12 | + | |
13 | + <script data-main="{{ STATIC_URL }}third-party/converse.js/main" src="{{ STATIC_URL }}third-party/converse.js/Libraries/require-jquery.js"></script> | |
14 | + | |
7 | 15 | {% block head_js %} |
8 | 16 | {% endblock %} |
9 | 17 | {% block head_css %} | ... | ... |