mirror of
https://github.com/jupyter/notebook.git
synced 2025-02-05 12:19:58 +08:00
Removing one level uf subdirs in static/custom.
This commit is contained in:
parent
747dd7ab2b
commit
5db6f60336
@ -1,7 +1,7 @@
|
||||
/*
|
||||
Placeholder for custom user CSS
|
||||
|
||||
mainly to be overridden in profile/static/user/custom.css
|
||||
mainly to be overridden in profile/static/custom/custom.css
|
||||
|
||||
This will always be an empty file in IPython
|
||||
*/
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
*
|
||||
* Placeholder for custom user javascript
|
||||
* mainly to be overridden in profile/static/user/js/custom.js
|
||||
* mainly to be overridden in profile/static/custom/custom.js
|
||||
* This will always be an empty file in IPython
|
||||
*
|
||||
* User could add any javascript in the `profile/static/user/js/custom.js` file
|
||||
* User could add any javascript in the `profile/static/custom/custom.js` file
|
||||
* (and should create it if it does not exist).
|
||||
* It will be executed by the ipython notebook at load time.
|
||||
*
|
||||
@ -34,10 +34,10 @@
|
||||
* to load custom script into the notebook.
|
||||
*
|
||||
* // to load the metadata ui extension example.
|
||||
* $.getScript('/static/notebooks/js/celltoolbarpresets/example.js');
|
||||
* $.getScript('/static/notebook/js/celltoolbarpresets/example.js');
|
||||
* // or
|
||||
* // to load the metadata ui extension to control slideshow mode / reveal js for nbconvert
|
||||
* $.getScript('/static/notebooks/js/celltoolbarpresets/slideshow.js');
|
||||
* $.getScript('/static/notebook/js/celltoolbarpresets/slideshow.js');
|
||||
*
|
||||
*
|
||||
* @module IPython
|
@ -23,7 +23,7 @@
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
<link rel="stylesheet" href="{{ static_url("custom/css/custom.css") }}" type="text/css" />
|
||||
<link rel="stylesheet" href="{{ static_url("custom/custom.css") }}" type="text/css" />
|
||||
|
||||
|
||||
{% block meta %}
|
||||
@ -69,7 +69,7 @@
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
||||
<script src="{{static_url("custom/js/custom.js") }}" type="text/javascript" charset="utf-8"></script>
|
||||
<script src="{{static_url("custom/custom.js") }}" type="text/javascript" charset="utf-8"></script>
|
||||
|
||||
</body>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user