##// END OF EJS Templates
Merge pull request #6579 from minrk/rm-dateformat...
Matthias Bussonnier -
r18044:61c371a5 merge
parent child Browse files
Show More
@@ -1,108 +1,104
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 dateformat: 'dateformat/date.format',
29 jqueryui: 'components/jquery-ui/ui/minified/jquery-ui.min',
28 jqueryui: 'components/jquery-ui/ui/minified/jquery-ui.min',
30 highlight: 'components/highlight.js/build/highlight.pack',
29 highlight: 'components/highlight.js/build/highlight.pack',
31 moment: "components/moment/moment",
30 moment: "components/moment/moment",
32 },
31 },
33 shim: {
32 shim: {
34 underscore: {
33 underscore: {
35 exports: '_'
34 exports: '_'
36 },
35 },
37 backbone: {
36 backbone: {
38 deps: ["underscore", "jquery"],
37 deps: ["underscore", "jquery"],
39 exports: "Backbone"
38 exports: "Backbone"
40 },
39 },
41 bootstrap: {
40 bootstrap: {
42 deps: ["jquery"],
41 deps: ["jquery"],
43 exports: "bootstrap"
42 exports: "bootstrap"
44 },
43 },
45 bootstraptour: {
44 bootstraptour: {
46 deps: ["bootstrap"],
45 deps: ["bootstrap"],
47 exports: "Tour"
46 exports: "Tour"
48 },
47 },
49 dateformat: {
50 exports: "dateFormat"
51 },
52 jqueryui: {
48 jqueryui: {
53 deps: ["jquery"],
49 deps: ["jquery"],
54 exports: "$"
50 exports: "$"
55 },
51 },
56 highlight: {
52 highlight: {
57 exports: "hljs"
53 exports: "hljs"
58 },
54 },
59 }
55 }
60 });
56 });
61 </script>
57 </script>
62
58
63 {% block meta %}
59 {% block meta %}
64 {% endblock %}
60 {% endblock %}
65
61
66 </head>
62 </head>
67
63
68 <body {% block params %}{% endblock %}>
64 <body {% block params %}{% endblock %}>
69
65
70 <noscript>
66 <noscript>
71 <div id='noscript'>
67 <div id='noscript'>
72 IPython Notebook requires JavaScript.<br>
68 IPython Notebook requires JavaScript.<br>
73 Please enable it to proceed.
69 Please enable it to proceed.
74 </div>
70 </div>
75 </noscript>
71 </noscript>
76
72
77 <div id="header" class="navbar navbar-static-top">
73 <div id="header" class="navbar navbar-static-top">
78 <div class="container">
74 <div class="container">
79 <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>
75 <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>
80
76
81 {% block login_widget %}
77 {% block login_widget %}
82
78
83 <span id="login_widget">
79 <span id="login_widget">
84 {% if logged_in %}
80 {% if logged_in %}
85 <button id="logout">Logout</button>
81 <button id="logout">Logout</button>
86 {% elif login_available and not logged_in %}
82 {% elif login_available and not logged_in %}
87 <button id="login">Login</button>
83 <button id="login">Login</button>
88 {% endif %}
84 {% endif %}
89 </span>
85 </span>
90
86
91 {% endblock %}
87 {% endblock %}
92
88
93 {% block header %}
89 {% block header %}
94 {% endblock %}
90 {% endblock %}
95 </div>
91 </div>
96 </div>
92 </div>
97
93
98 <div id="site">
94 <div id="site">
99 {% block site %}
95 {% block site %}
100 {% endblock %}
96 {% endblock %}
101 </div>
97 </div>
102
98
103 {% block script %}
99 {% block script %}
104 {% endblock %}
100 {% endblock %}
105
101
106 </body>
102 </body>
107
103
108 </html>
104 </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