Removing one level uf subdirs in static/custom.

This commit is contained in:
Brian E. Granger 2013-05-23 21:36:47 -07:00
parent 747dd7ab2b
commit 5db6f60336
3 changed files with 7 additions and 7 deletions

View File

@ -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
*/

View File

@ -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

View File

@ -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>