##// END OF EJS Templates
transparent gif placeholder src...
Min RK -
Show More
@@ -1,328 +1,328 b''
1 {% extends "page.html" %}
1 {% extends "page.html" %}
2
2
3 {% block stylesheet %}
3 {% block stylesheet %}
4
4
5 {% if mathjax_url %}
5 {% if mathjax_url %}
6 <script type="text/javascript" src="{{mathjax_url}}?config=TeX-AMS_HTML-full&delayStartupUntil=configured" charset="utf-8"></script>
6 <script type="text/javascript" src="{{mathjax_url}}?config=TeX-AMS_HTML-full&delayStartupUntil=configured" charset="utf-8"></script>
7 {% endif %}
7 {% endif %}
8 <script type="text/javascript">
8 <script type="text/javascript">
9 // MathJax disabled, set as null to distingish from *missing* MathJax,
9 // MathJax disabled, set as null to distingish from *missing* MathJax,
10 // where it will be undefined, and should prompt a dialog later.
10 // where it will be undefined, and should prompt a dialog later.
11 window.mathjax_url = "{{mathjax_url}}";
11 window.mathjax_url = "{{mathjax_url}}";
12 </script>
12 </script>
13
13
14 <link rel="stylesheet" href="{{ static_url("components/bootstrap-tour/build/css/bootstrap-tour.min.css") }}" type="text/css" />
14 <link rel="stylesheet" href="{{ static_url("components/bootstrap-tour/build/css/bootstrap-tour.min.css") }}" type="text/css" />
15 <link rel="stylesheet" href="{{ static_url("components/codemirror/lib/codemirror.css") }}">
15 <link rel="stylesheet" href="{{ static_url("components/codemirror/lib/codemirror.css") }}">
16
16
17 {{super()}}
17 {{super()}}
18
18
19 <link rel="stylesheet" href="{{ static_url("notebook/css/override.css") }}" type="text/css" />
19 <link rel="stylesheet" href="{{ static_url("notebook/css/override.css") }}" type="text/css" />
20 <link rel="stylesheet" href="" id='kernel-css' type="text/css" />
20 <link rel="stylesheet" href="" id='kernel-css' type="text/css" />
21
21
22 {% endblock %}
22 {% endblock %}
23
23
24 {% block params %}
24 {% block params %}
25
25
26 data-project="{{project}}"
26 data-project="{{project}}"
27 data-base-url="{{base_url}}"
27 data-base-url="{{base_url}}"
28 data-ws-url="{{ws_url}}"
28 data-ws-url="{{ws_url}}"
29 data-notebook-name="{{notebook_name}}"
29 data-notebook-name="{{notebook_name}}"
30 data-notebook-path="{{notebook_path}}"
30 data-notebook-path="{{notebook_path}}"
31 class="notebook_app"
31 class="notebook_app"
32
32
33 {% endblock %}
33 {% endblock %}
34
34
35
35
36 {% block headercontainer %}
36 {% block headercontainer %}
37
37
38
38
39 <span id="save_widget" class="pull-left save_widget">
39 <span id="save_widget" class="pull-left save_widget">
40 <span class="filename"></span>
40 <span class="filename"></span>
41 <span class="checkpoint_status"></span>
41 <span class="checkpoint_status"></span>
42 <span class="autosave_status"></span>
42 <span class="autosave_status"></span>
43 </span>
43 </span>
44
44
45 <span id="kernel_logo_widget">
45 <span id="kernel_logo_widget">
46 <img class="current_kernel_logo" src=""/>
46 <img class="current_kernel_logo" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"/>
47 </span>
47 </span>
48
48
49 {% endblock headercontainer %}
49 {% endblock headercontainer %}
50
50
51 {% block header %}
51 {% block header %}
52 <div id="menubar-container" class="container">
52 <div id="menubar-container" class="container">
53 <div id="menubar">
53 <div id="menubar">
54 <div id="menus" class="navbar navbar-default" role="navigation">
54 <div id="menus" class="navbar navbar-default" role="navigation">
55 <div class="container-fluid">
55 <div class="container-fluid">
56 <button type="button" class="btn btn-default navbar-btn navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
56 <button type="button" class="btn btn-default navbar-btn navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
57 <i class="fa fa-bars"></i>
57 <i class="fa fa-bars"></i>
58 <span class="navbar-text">Menu</span>
58 <span class="navbar-text">Menu</span>
59 </button>
59 </button>
60 <p id="kernel_indicator" class="navbar-text">
60 <p id="kernel_indicator" class="navbar-text">
61 <span class="kernel_indicator_name">Kernel</span>
61 <span class="kernel_indicator_name">Kernel</span>
62 <i id="kernel_indicator_icon"></i>
62 <i id="kernel_indicator_icon"></i>
63 </p>
63 </p>
64 <p id="modal_indicator" class="navbar-text">
64 <p id="modal_indicator" class="navbar-text">
65 <i id="modal_indicator_icon"></i>
65 <i id="modal_indicator_icon"></i>
66 </p>
66 </p>
67 <span id="notification_area"></span>
67 <span id="notification_area"></span>
68 <div class="navbar-collapse collapse">
68 <div class="navbar-collapse collapse">
69 <ul class="nav navbar-nav">
69 <ul class="nav navbar-nav">
70 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">File</a>
70 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">File</a>
71 <ul id="file_menu" class="dropdown-menu">
71 <ul id="file_menu" class="dropdown-menu">
72 <li id="new_notebook"
72 <li id="new_notebook"
73 title="Make a new notebook (Opens a new window)">
73 title="Make a new notebook (Opens a new window)">
74 <a href="#">New</a></li>
74 <a href="#">New</a></li>
75 <li id="open_notebook"
75 <li id="open_notebook"
76 title="Opens a new window with the Dashboard view">
76 title="Opens a new window with the Dashboard view">
77 <a href="#">Open...</a></li>
77 <a href="#">Open...</a></li>
78 <!-- <hr/> -->
78 <!-- <hr/> -->
79 <li class="divider"></li>
79 <li class="divider"></li>
80 <li id="copy_notebook"
80 <li id="copy_notebook"
81 title="Open a copy of this notebook's contents and start a new kernel">
81 title="Open a copy of this notebook's contents and start a new kernel">
82 <a href="#">Make a Copy...</a></li>
82 <a href="#">Make a Copy...</a></li>
83 <li id="rename_notebook"><a href="#">Rename...</a></li>
83 <li id="rename_notebook"><a href="#">Rename...</a></li>
84 <li id="save_checkpoint"><a href="#">Save and Checkpoint</a></li>
84 <li id="save_checkpoint"><a href="#">Save and Checkpoint</a></li>
85 <!-- <hr/> -->
85 <!-- <hr/> -->
86 <li class="divider"></li>
86 <li class="divider"></li>
87 <li id="restore_checkpoint" class="dropdown-submenu"><a href="#">Revert to Checkpoint</a>
87 <li id="restore_checkpoint" class="dropdown-submenu"><a href="#">Revert to Checkpoint</a>
88 <ul class="dropdown-menu">
88 <ul class="dropdown-menu">
89 <li><a href="#"></a></li>
89 <li><a href="#"></a></li>
90 <li><a href="#"></a></li>
90 <li><a href="#"></a></li>
91 <li><a href="#"></a></li>
91 <li><a href="#"></a></li>
92 <li><a href="#"></a></li>
92 <li><a href="#"></a></li>
93 <li><a href="#"></a></li>
93 <li><a href="#"></a></li>
94 </ul>
94 </ul>
95 </li>
95 </li>
96 <li class="divider"></li>
96 <li class="divider"></li>
97 <li id="print_preview"><a href="#">Print Preview</a></li>
97 <li id="print_preview"><a href="#">Print Preview</a></li>
98 <li class="dropdown-submenu"><a href="#">Download as</a>
98 <li class="dropdown-submenu"><a href="#">Download as</a>
99 <ul class="dropdown-menu">
99 <ul class="dropdown-menu">
100 <li id="download_ipynb"><a href="#">IPython Notebook (.ipynb)</a></li>
100 <li id="download_ipynb"><a href="#">IPython Notebook (.ipynb)</a></li>
101 <li id="download_script"><a href="#">Script</a></li>
101 <li id="download_script"><a href="#">Script</a></li>
102 <li id="download_html"><a href="#">HTML (.html)</a></li>
102 <li id="download_html"><a href="#">HTML (.html)</a></li>
103 <li id="download_rst"><a href="#">reST (.rst)</a></li>
103 <li id="download_rst"><a href="#">reST (.rst)</a></li>
104 <li id="download_pdf"><a href="#">PDF (.pdf)</a></li>
104 <li id="download_pdf"><a href="#">PDF (.pdf)</a></li>
105 </ul>
105 </ul>
106 </li>
106 </li>
107 <li class="divider"></li>
107 <li class="divider"></li>
108 <li id="trust_notebook"
108 <li id="trust_notebook"
109 title="Trust the output of this notebook">
109 title="Trust the output of this notebook">
110 <a href="#" >Trust Notebook</a></li>
110 <a href="#" >Trust Notebook</a></li>
111 <li class="divider"></li>
111 <li class="divider"></li>
112 <li id="kill_and_exit"
112 <li id="kill_and_exit"
113 title="Shutdown this notebook's kernel, and close this window">
113 title="Shutdown this notebook's kernel, and close this window">
114 <a href="#" >Close and halt</a></li>
114 <a href="#" >Close and halt</a></li>
115 </ul>
115 </ul>
116 </li>
116 </li>
117 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Edit</a>
117 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Edit</a>
118 <ul id="edit_menu" class="dropdown-menu">
118 <ul id="edit_menu" class="dropdown-menu">
119 <li id="cut_cell"><a href="#">Cut Cell</a></li>
119 <li id="cut_cell"><a href="#">Cut Cell</a></li>
120 <li id="copy_cell"><a href="#">Copy Cell</a></li>
120 <li id="copy_cell"><a href="#">Copy Cell</a></li>
121 <li id="paste_cell_above" class="disabled"><a href="#">Paste Cell Above</a></li>
121 <li id="paste_cell_above" class="disabled"><a href="#">Paste Cell Above</a></li>
122 <li id="paste_cell_below" class="disabled"><a href="#">Paste Cell Below</a></li>
122 <li id="paste_cell_below" class="disabled"><a href="#">Paste Cell Below</a></li>
123 <li id="paste_cell_replace" class="disabled"><a href="#">Paste Cell &amp; Replace</a></li>
123 <li id="paste_cell_replace" class="disabled"><a href="#">Paste Cell &amp; Replace</a></li>
124 <li id="delete_cell"><a href="#">Delete Cell</a></li>
124 <li id="delete_cell"><a href="#">Delete Cell</a></li>
125 <li id="undelete_cell" class="disabled"><a href="#">Undo Delete Cell</a></li>
125 <li id="undelete_cell" class="disabled"><a href="#">Undo Delete Cell</a></li>
126 <li class="divider"></li>
126 <li class="divider"></li>
127 <li id="split_cell"><a href="#">Split Cell</a></li>
127 <li id="split_cell"><a href="#">Split Cell</a></li>
128 <li id="merge_cell_above"><a href="#">Merge Cell Above</a></li>
128 <li id="merge_cell_above"><a href="#">Merge Cell Above</a></li>
129 <li id="merge_cell_below"><a href="#">Merge Cell Below</a></li>
129 <li id="merge_cell_below"><a href="#">Merge Cell Below</a></li>
130 <li class="divider"></li>
130 <li class="divider"></li>
131 <li id="move_cell_up"><a href="#">Move Cell Up</a></li>
131 <li id="move_cell_up"><a href="#">Move Cell Up</a></li>
132 <li id="move_cell_down"><a href="#">Move Cell Down</a></li>
132 <li id="move_cell_down"><a href="#">Move Cell Down</a></li>
133 <li class="divider"></li>
133 <li class="divider"></li>
134 <li id="edit_nb_metadata"><a href="#">Edit Notebook Metadata</a></li>
134 <li id="edit_nb_metadata"><a href="#">Edit Notebook Metadata</a></li>
135 </ul>
135 </ul>
136 </li>
136 </li>
137 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">View</a>
137 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">View</a>
138 <ul id="view_menu" class="dropdown-menu">
138 <ul id="view_menu" class="dropdown-menu">
139 <li id="toggle_header"
139 <li id="toggle_header"
140 title="Show/Hide the IPython Notebook logo and notebook title (above menu bar)">
140 title="Show/Hide the IPython Notebook logo and notebook title (above menu bar)">
141 <a href="#">Toggle Header</a></li>
141 <a href="#">Toggle Header</a></li>
142 <li id="toggle_toolbar"
142 <li id="toggle_toolbar"
143 title="Show/Hide the action icons (below menu bar)">
143 title="Show/Hide the action icons (below menu bar)">
144 <a href="#">Toggle Toolbar</a></li>
144 <a href="#">Toggle Toolbar</a></li>
145 </ul>
145 </ul>
146 </li>
146 </li>
147 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Insert</a>
147 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Insert</a>
148 <ul id="insert_menu" class="dropdown-menu">
148 <ul id="insert_menu" class="dropdown-menu">
149 <li id="insert_cell_above"
149 <li id="insert_cell_above"
150 title="Insert an empty Code cell above the currently active cell">
150 title="Insert an empty Code cell above the currently active cell">
151 <a href="#">Insert Cell Above</a></li>
151 <a href="#">Insert Cell Above</a></li>
152 <li id="insert_cell_below"
152 <li id="insert_cell_below"
153 title="Insert an empty Code cell below the currently active cell">
153 title="Insert an empty Code cell below the currently active cell">
154 <a href="#">Insert Cell Below</a></li>
154 <a href="#">Insert Cell Below</a></li>
155 </ul>
155 </ul>
156 </li>
156 </li>
157 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Cell</a>
157 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Cell</a>
158 <ul id="cell_menu" class="dropdown-menu">
158 <ul id="cell_menu" class="dropdown-menu">
159 <li id="run_cell" title="Run this cell, and move cursor to the next one">
159 <li id="run_cell" title="Run this cell, and move cursor to the next one">
160 <a href="#">Run</a></li>
160 <a href="#">Run</a></li>
161 <li id="run_cell_select_below" title="Run this cell, select below">
161 <li id="run_cell_select_below" title="Run this cell, select below">
162 <a href="#">Run and Select Below</a></li>
162 <a href="#">Run and Select Below</a></li>
163 <li id="run_cell_insert_below" title="Run this cell, insert below">
163 <li id="run_cell_insert_below" title="Run this cell, insert below">
164 <a href="#">Run and Insert Below</a></li>
164 <a href="#">Run and Insert Below</a></li>
165 <li id="run_all_cells" title="Run all cells in the notebook">
165 <li id="run_all_cells" title="Run all cells in the notebook">
166 <a href="#">Run All</a></li>
166 <a href="#">Run All</a></li>
167 <li id="run_all_cells_above" title="Run all cells above (but not including) this cell">
167 <li id="run_all_cells_above" title="Run all cells above (but not including) this cell">
168 <a href="#">Run All Above</a></li>
168 <a href="#">Run All Above</a></li>
169 <li id="run_all_cells_below" title="Run this cell and all cells below it">
169 <li id="run_all_cells_below" title="Run this cell and all cells below it">
170 <a href="#">Run All Below</a></li>
170 <a href="#">Run All Below</a></li>
171 <li class="divider"></li>
171 <li class="divider"></li>
172 <li id="change_cell_type" class="dropdown-submenu"
172 <li id="change_cell_type" class="dropdown-submenu"
173 title="All cells in the notebook have a cell type. By default, new cells are created as 'Code' cells">
173 title="All cells in the notebook have a cell type. By default, new cells are created as 'Code' cells">
174 <a href="#">Cell Type</a>
174 <a href="#">Cell Type</a>
175 <ul class="dropdown-menu">
175 <ul class="dropdown-menu">
176 <li id="to_code"
176 <li id="to_code"
177 title="Contents will be sent to the kernel for execution, and output will display in the footer of cell">
177 title="Contents will be sent to the kernel for execution, and output will display in the footer of cell">
178 <a href="#">Code</a></li>
178 <a href="#">Code</a></li>
179 <li id="to_markdown"
179 <li id="to_markdown"
180 title="Contents will be rendered as HTML and serve as explanatory text">
180 title="Contents will be rendered as HTML and serve as explanatory text">
181 <a href="#">Markdown</a></li>
181 <a href="#">Markdown</a></li>
182 <li id="to_raw"
182 <li id="to_raw"
183 title="Contents will pass through nbconvert unmodified">
183 title="Contents will pass through nbconvert unmodified">
184 <a href="#">Raw NBConvert</a></li>
184 <a href="#">Raw NBConvert</a></li>
185 </ul>
185 </ul>
186 </li>
186 </li>
187 <li class="divider"></li>
187 <li class="divider"></li>
188 <li id="current_outputs" class="dropdown-submenu"><a href="#">Current Output</a>
188 <li id="current_outputs" class="dropdown-submenu"><a href="#">Current Output</a>
189 <ul class="dropdown-menu">
189 <ul class="dropdown-menu">
190 <li id="toggle_current_output"
190 <li id="toggle_current_output"
191 title="Hide/Show the output of the current cell">
191 title="Hide/Show the output of the current cell">
192 <a href="#">Toggle</a>
192 <a href="#">Toggle</a>
193 </li>
193 </li>
194 <li id="toggle_current_output_scroll"
194 <li id="toggle_current_output_scroll"
195 title="Scroll the output of the current cell">
195 title="Scroll the output of the current cell">
196 <a href="#">Toggle Scrolling</a>
196 <a href="#">Toggle Scrolling</a>
197 </li>
197 </li>
198 <li id="clear_current_output"
198 <li id="clear_current_output"
199 title="Clear the output of the current cell">
199 title="Clear the output of the current cell">
200 <a href="#">Clear</a>
200 <a href="#">Clear</a>
201 </li>
201 </li>
202 </ul>
202 </ul>
203 </li>
203 </li>
204 <li id="all_outputs" class="dropdown-submenu"><a href="#">All Output</a>
204 <li id="all_outputs" class="dropdown-submenu"><a href="#">All Output</a>
205 <ul class="dropdown-menu">
205 <ul class="dropdown-menu">
206 <li id="toggle_all_output"
206 <li id="toggle_all_output"
207 title="Hide/Show the output of all cells">
207 title="Hide/Show the output of all cells">
208 <a href="#">Toggle</a>
208 <a href="#">Toggle</a>
209 </li>
209 </li>
210 <li id="toggle_all_output_scroll"
210 <li id="toggle_all_output_scroll"
211 title="Scroll the output of all cells">
211 title="Scroll the output of all cells">
212 <a href="#">Toggle Scrolling</a>
212 <a href="#">Toggle Scrolling</a>
213 </li>
213 </li>
214 <li id="clear_all_output"
214 <li id="clear_all_output"
215 title="Clear the output of all cells">
215 title="Clear the output of all cells">
216 <a href="#">Clear</a>
216 <a href="#">Clear</a>
217 </li>
217 </li>
218 </ul>
218 </ul>
219 </li>
219 </li>
220 </ul>
220 </ul>
221 </li>
221 </li>
222 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Kernel</a>
222 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Kernel</a>
223 <ul id="kernel_menu" class="dropdown-menu">
223 <ul id="kernel_menu" class="dropdown-menu">
224 <li id="int_kernel"
224 <li id="int_kernel"
225 title="Send KeyboardInterrupt (CTRL-C) to the Kernel">
225 title="Send KeyboardInterrupt (CTRL-C) to the Kernel">
226 <a href="#">Interrupt</a>
226 <a href="#">Interrupt</a>
227 </li>
227 </li>
228 <li id="restart_kernel"
228 <li id="restart_kernel"
229 title="Restart the Kernel">
229 title="Restart the Kernel">
230 <a href="#">Restart</a>
230 <a href="#">Restart</a>
231 </li>
231 </li>
232 <li id="reconnect_kernel"
232 <li id="reconnect_kernel"
233 title="Reconnect to the Kernel">
233 title="Reconnect to the Kernel">
234 <a href="#">Reconnect</a>
234 <a href="#">Reconnect</a>
235 </li>
235 </li>
236 <li class="divider"></li>
236 <li class="divider"></li>
237 <li id="menu-change-kernel" class="dropdown-submenu">
237 <li id="menu-change-kernel" class="dropdown-submenu">
238 <a href="#">Change kernel</a>
238 <a href="#">Change kernel</a>
239 <ul class="dropdown-menu" id="menu-change-kernel-submenu"></ul>
239 <ul class="dropdown-menu" id="menu-change-kernel-submenu"></ul>
240 </li>
240 </li>
241 </ul>
241 </ul>
242 </li>
242 </li>
243 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Help</a>
243 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Help</a>
244 <ul id="help_menu" class="dropdown-menu">
244 <ul id="help_menu" class="dropdown-menu">
245 <li id="notebook_tour" title="A quick tour of the notebook user interface"><a href="#">User Interface Tour</a></li>
245 <li id="notebook_tour" title="A quick tour of the notebook user interface"><a href="#">User Interface Tour</a></li>
246 <li id="keyboard_shortcuts" title="Opens a tooltip with all keyboard shortcuts"><a href="#">Keyboard Shortcuts</a></li>
246 <li id="keyboard_shortcuts" title="Opens a tooltip with all keyboard shortcuts"><a href="#">Keyboard Shortcuts</a></li>
247 <li class="divider"></li>
247 <li class="divider"></li>
248 {% set
248 {% set
249 sections = (
249 sections = (
250 (
250 (
251 ("http://ipython.org/documentation.html","IPython Help",True),
251 ("http://ipython.org/documentation.html","IPython Help",True),
252 ("http://nbviewer.ipython.org/github/ipython/ipython/tree/2.x/examples/Index.ipynb", "Notebook Help", True),
252 ("http://nbviewer.ipython.org/github/ipython/ipython/tree/2.x/examples/Index.ipynb", "Notebook Help", True),
253 ),(
253 ),(
254 ("http://docs.python.org","Python",True),
254 ("http://docs.python.org","Python",True),
255 ("http://help.github.com/articles/github-flavored-markdown","Markdown",True),
255 ("http://help.github.com/articles/github-flavored-markdown","Markdown",True),
256 ("http://docs.scipy.org/doc/numpy/reference/","NumPy",True),
256 ("http://docs.scipy.org/doc/numpy/reference/","NumPy",True),
257 ("http://docs.scipy.org/doc/scipy/reference/","SciPy",True),
257 ("http://docs.scipy.org/doc/scipy/reference/","SciPy",True),
258 ("http://matplotlib.org/contents.html","Matplotlib",True),
258 ("http://matplotlib.org/contents.html","Matplotlib",True),
259 ("http://docs.sympy.org/latest/index.html","SymPy",True),
259 ("http://docs.sympy.org/latest/index.html","SymPy",True),
260 ("http://pandas.pydata.org/pandas-docs/stable/","pandas", True)
260 ("http://pandas.pydata.org/pandas-docs/stable/","pandas", True)
261 )
261 )
262 )
262 )
263 %}
263 %}
264
264
265 {% for helplinks in sections %}
265 {% for helplinks in sections %}
266 {% for link in helplinks %}
266 {% for link in helplinks %}
267 <li><a href="{{link[0]}}" {{'target="_blank" title="Opens in a new window"' if link[2]}}>
267 <li><a href="{{link[0]}}" {{'target="_blank" title="Opens in a new window"' if link[2]}}>
268 {{'<i class="fa fa-external-link menu-icon pull-right"></i>' if link[2]}}
268 {{'<i class="fa fa-external-link menu-icon pull-right"></i>' if link[2]}}
269 {{link[1]}}
269 {{link[1]}}
270 </a></li>
270 </a></li>
271 {% endfor %}
271 {% endfor %}
272 {% if not loop.last %}
272 {% if not loop.last %}
273 <li class="divider"></li>
273 <li class="divider"></li>
274 {% endif %}
274 {% endif %}
275 {% endfor %}
275 {% endfor %}
276 <li class="divider"></li>
276 <li class="divider"></li>
277 <li title="About IPython Notebook"><a id="notebook_about" href="#">About</a></li>
277 <li title="About IPython Notebook"><a id="notebook_about" href="#">About</a></li>
278 </ul>
278 </ul>
279 </li>
279 </li>
280 </ul>
280 </ul>
281 </div>
281 </div>
282 </div>
282 </div>
283 </div>
283 </div>
284 </div>
284 </div>
285
285
286 <div id="maintoolbar" class="navbar">
286 <div id="maintoolbar" class="navbar">
287 <div class="toolbar-inner navbar-inner navbar-nobg">
287 <div class="toolbar-inner navbar-inner navbar-nobg">
288 <div id="maintoolbar-container" class="container"></div>
288 <div id="maintoolbar-container" class="container"></div>
289 </div>
289 </div>
290 </div>
290 </div>
291 </div>
291 </div>
292
292
293 <div class="lower-header-bar"></div>
293 <div class="lower-header-bar"></div>
294 {% endblock header %}
294 {% endblock header %}
295
295
296 {% block site %}
296 {% block site %}
297
297
298
298
299 <div id="ipython-main-app">
299 <div id="ipython-main-app">
300 <div id="notebook_panel">
300 <div id="notebook_panel">
301 <div id="notebook"></div>
301 <div id="notebook"></div>
302 </div>
302 </div>
303 </div>
303 </div>
304
304
305 <div id="pager">
305 <div id="pager">
306 <div id="pager-contents">
306 <div id="pager-contents">
307 <div id="pager-container" class="container"></div>
307 <div id="pager-container" class="container"></div>
308 </div>
308 </div>
309 <div id='pager-button-area'></div>
309 <div id='pager-button-area'></div>
310 </div>
310 </div>
311
311
312 <div id='tooltip' class='ipython_tooltip' style='display:none'></div>
312 <div id='tooltip' class='ipython_tooltip' style='display:none'></div>
313
313
314
314
315 {% endblock %}
315 {% endblock %}
316
316
317
317
318 {% block script %}
318 {% block script %}
319 {{super()}}
319 {{super()}}
320 <script type="text/javascript">
320 <script type="text/javascript">
321 sys_info = {{sys_info}};
321 sys_info = {{sys_info}};
322 </script>
322 </script>
323
323
324 <script src="{{ static_url("components/text-encoding/lib/encoding.js") }}" charset="utf-8"></script>
324 <script src="{{ static_url("components/text-encoding/lib/encoding.js") }}" charset="utf-8"></script>
325
325
326 <script src="{{ static_url("notebook/js/main.js") }}" charset="utf-8"></script>
326 <script src="{{ static_url("notebook/js/main.js") }}" charset="utf-8"></script>
327
327
328 {% endblock %}
328 {% endblock %}
General Comments 0
You need to be logged in to leave comments. Login now