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