##// END OF EJS Templates
Merge pull request #6174 from Carreau/pagemain...
Min RK -
r17281:9c9262fc merge
parent child Browse files
Show More
@@ -1,100 +1,99 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 bootstraptour: 'components/bootstrap-tour/build/js/bootstrap-tour.min',
26 bootstraptour: 'components/bootstrap-tour/build/js/bootstrap-tour.min',
27 dateformat: 'dateformat/date.format',
27 dateformat: 'dateformat/date.format',
28 jqueryui: 'components/jquery-ui/ui/minified/jquery-ui.min',
28 jqueryui: 'components/jquery-ui/ui/minified/jquery-ui.min',
29 },
29 },
30 shim: {
30 shim: {
31 underscore: {
31 underscore: {
32 exports: '_'
32 exports: '_'
33 },
33 },
34 backbone: {
34 backbone: {
35 deps: ["underscore", "jquery"],
35 deps: ["underscore", "jquery"],
36 exports: "Backbone"
36 exports: "Backbone"
37 },
37 },
38 bootstraptour: {
38 bootstraptour: {
39 exports: "Tour"
39 exports: "Tour"
40 },
40 },
41 dateformat: {
41 dateformat: {
42 exports: "dateFormat"
42 exports: "dateFormat"
43 },
43 },
44 jqueryui: {
44 jqueryui: {
45 deps: ["jquery"],
45 deps: ["jquery"],
46 exports: "$"
46 exports: "$"
47 }
47 }
48 }
48 }
49 });
49 });
50 </script>
50 </script>
51
51
52 {% block meta %}
52 {% block meta %}
53 {% endblock %}
53 {% endblock %}
54
54
55 </head>
55 </head>
56
56
57 <body {% block params %}{% endblock %}>
57 <body {% block params %}{% endblock %}>
58
58
59 <noscript>
59 <noscript>
60 <div id='noscript'>
60 <div id='noscript'>
61 IPython Notebook requires JavaScript.<br>
61 IPython Notebook requires JavaScript.<br>
62 Please enable it to proceed.
62 Please enable it to proceed.
63 </div>
63 </div>
64 </noscript>
64 </noscript>
65
65
66 <div id="header" class="navbar navbar-static-top">
66 <div id="header" class="navbar navbar-static-top">
67 <div class="container">
67 <div class="container">
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>
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 {% block login_widget %}
70 {% block login_widget %}
71
71
72 <span id="login_widget">
72 <span id="login_widget">
73 {% if logged_in %}
73 {% if logged_in %}
74 <button id="logout">Logout</button>
74 <button id="logout">Logout</button>
75 {% elif login_available and not logged_in %}
75 {% elif login_available and not logged_in %}
76 <button id="login">Login</button>
76 <button id="login">Login</button>
77 {% endif %}
77 {% endif %}
78 </span>
78 </span>
79
79
80 {% endblock %}
80 {% endblock %}
81
81
82 {% block header %}
82 {% block header %}
83 {% endblock %}
83 {% endblock %}
84 </div>
84 </div>
85 </div>
85 </div>
86
86
87 <div id="site">
87 <div id="site">
88 {% block site %}
88 {% block site %}
89 {% endblock %}
89 {% endblock %}
90 </div>
90 </div>
91
91
92 {% block script %}
92 {% block script %}
93 <script src="{{static_url("base/js/pagemain.js") }}" type="text/javascript" charset="utf-8"></script>
94 {% endblock %}
93 {% endblock %}
95
94
96 <script src="{{static_url("custom/custom.js") }}" type="text/javascript" charset="utf-8"></script>
95 <script src="{{static_url("custom/custom.js") }}" type="text/javascript" charset="utf-8"></script>
97
96
98 </body>
97 </body>
99
98
100 </html>
99 </html>
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now