Show More
@@ -1,100 +1,99 | |||
|
1 | 1 | <!DOCTYPE HTML> |
|
2 | 2 | <html> |
|
3 | 3 | |
|
4 | 4 | <head> |
|
5 | 5 | <meta charset="utf-8"> |
|
6 | 6 | |
|
7 | 7 | <title>{% block title %}IPython Notebook{% endblock %}</title> |
|
8 | 8 | <link rel="shortcut icon" type="image/x-icon" href="{{static_url("base/images/favicon.ico") }}"> |
|
9 | 9 | <meta http-equiv="X-UA-Compatible" content="chrome=1"> |
|
10 | 10 | <link rel="stylesheet" href="{{static_url("components/jquery-ui/themes/smoothness/jquery-ui.min.css") }}" type="text/css" /> |
|
11 | 11 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
12 | 12 | |
|
13 | 13 | {% block stylesheet %} |
|
14 | 14 | <link rel="stylesheet" href="{{ static_url("style/style.min.css") }}" type="text/css"/> |
|
15 | 15 | {% endblock %} |
|
16 | 16 | <link rel="stylesheet" href="{{ static_url("custom/custom.css") }}" type="text/css" /> |
|
17 | 17 | <script src="{{static_url("components/requirejs/require.js") }}" type="text/javascript" charset="utf-8"></script> |
|
18 | 18 | <script> |
|
19 | 19 | require.config({ |
|
20 | 20 | baseUrl: '{{static_url("", include_version=False)}}', |
|
21 | 21 | paths: { |
|
22 | 22 | nbextensions : '{{ base_url }}nbextensions', |
|
23 | 23 | underscore : 'components/underscore/underscore-min', |
|
24 | 24 | backbone : 'components/backbone/backbone-min', |
|
25 | 25 | jquery: 'components/jquery/jquery.min', |
|
26 | 26 | bootstraptour: 'components/bootstrap-tour/build/js/bootstrap-tour.min', |
|
27 | 27 | dateformat: 'dateformat/date.format', |
|
28 | 28 | jqueryui: 'components/jquery-ui/ui/minified/jquery-ui.min', |
|
29 | 29 | }, |
|
30 | 30 | shim: { |
|
31 | 31 | underscore: { |
|
32 | 32 | exports: '_' |
|
33 | 33 | }, |
|
34 | 34 | backbone: { |
|
35 | 35 | deps: ["underscore", "jquery"], |
|
36 | 36 | exports: "Backbone" |
|
37 | 37 | }, |
|
38 | 38 | bootstraptour: { |
|
39 | 39 | exports: "Tour" |
|
40 | 40 | }, |
|
41 | 41 | dateformat: { |
|
42 | 42 | exports: "dateFormat" |
|
43 | 43 | }, |
|
44 | 44 | jqueryui: { |
|
45 | 45 | deps: ["jquery"], |
|
46 | 46 | exports: "$" |
|
47 | 47 | } |
|
48 | 48 | } |
|
49 | 49 | }); |
|
50 | 50 | </script> |
|
51 | 51 | |
|
52 | 52 | {% block meta %} |
|
53 | 53 | {% endblock %} |
|
54 | 54 | |
|
55 | 55 | </head> |
|
56 | 56 | |
|
57 | 57 | <body {% block params %}{% endblock %}> |
|
58 | 58 | |
|
59 | 59 | <noscript> |
|
60 | 60 | <div id='noscript'> |
|
61 | 61 | IPython Notebook requires JavaScript.<br> |
|
62 | 62 | Please enable it to proceed. |
|
63 | 63 | </div> |
|
64 | 64 | </noscript> |
|
65 | 65 | |
|
66 | 66 | <div id="header" class="navbar navbar-static-top"> |
|
67 | 67 | <div class="container"> |
|
68 | 68 | <div id="ipython_notebook" class="nav navbar-brand pull-left"><a href="{{base_url}}tree/{{notebook_path}}" alt='dashboard'><img src='{{static_url("base/images/ipynblogo.png") }}' alt='IPython Notebook'/></a></div> |
|
69 | 69 | |
|
70 | 70 | {% block login_widget %} |
|
71 | 71 | |
|
72 | 72 | <span id="login_widget"> |
|
73 | 73 | {% if logged_in %} |
|
74 | 74 | <button id="logout">Logout</button> |
|
75 | 75 | {% elif login_available and not logged_in %} |
|
76 | 76 | <button id="login">Login</button> |
|
77 | 77 | {% endif %} |
|
78 | 78 | </span> |
|
79 | 79 | |
|
80 | 80 | {% endblock %} |
|
81 | 81 | |
|
82 | 82 | {% block header %} |
|
83 | 83 | {% endblock %} |
|
84 | 84 | </div> |
|
85 | 85 | </div> |
|
86 | 86 | |
|
87 | 87 | <div id="site"> |
|
88 | 88 | {% block site %} |
|
89 | 89 | {% endblock %} |
|
90 | 90 | </div> |
|
91 | 91 | |
|
92 | 92 | {% block script %} |
|
93 | <script src="{{static_url("base/js/pagemain.js") }}" type="text/javascript" charset="utf-8"></script> | |
|
94 | 93 | {% endblock %} |
|
95 | 94 | |
|
96 | 95 | <script src="{{static_url("custom/custom.js") }}" type="text/javascript" charset="utf-8"></script> |
|
97 | 96 | |
|
98 | 97 | </body> |
|
99 | 98 | |
|
100 | 99 | </html> |
|
1 | NO CONTENT: file was removed |
General Comments 0
You need to be logged in to leave comments.
Login now