I have several projects that use the readthedocs theme that I'm hoping to can share a single _static folder location. It's two levels up at ../../_static. Is it possible to set this easily? What I've tried:
- various conf.py settings such as static_file_path
- changing all the _static paths in the template files to ../../_static
The latter method gets close but still leaves me with:
<script src=<"_static>/jquery.js"></script>
<script src=<"_static>/underscore.js"></script>
<script src=<"_static>/doctools.js"></script>
<script src=<"_static>/language_data.js"></script>
Those paths are dynamically generated and don't appear in the templates. I've tried to find the source in layout.html (probably 'pathto') without success.
Any ideas?