The URLs for Bootstrap have an extra slash, resulting in a 404. These URLs look like this: http://anki.github.io/assets/themes//resources/bootstrap/js/bootstrap.min.js (note the // between themes and resources).
There are two solutions:
- Rewrite instances like these to not have a slash; or:
- Define
ASSET_PATH (seen here) to workaround this.
The latter may be a more ideal solution as template/include files will remain easy to read and likely require less editing to make everything work, as opposed to the former. This is a non-issue for the analytic includes, as far as I'm aware.
The URLs for Bootstrap have an extra slash, resulting in a 404. These URLs look like this:
http://anki.github.io/assets/themes//resources/bootstrap/js/bootstrap.min.js(note the//betweenthemesandresources).There are two solutions:
ASSET_PATH(seen here) to workaround this.The latter may be a more ideal solution as template/include files will remain easy to read and likely require less editing to make everything work, as opposed to the former. This is a non-issue for the analytic includes, as far as I'm aware.