I am dealing with a website that follows this specific structure:
\
|--css
| \
| |--vendors
| | \
| | |--normalize.css
| | |--...
| |
| |--styles.css
| |--media-queries.css
|
|--js
| \
| |--vendors
| | \
| | |--jquery.js
| | |--jquery.plugin.js
| | |--...
| |
| |--script.js
|
|--img
|--index.html
Currently, I am looking to add a slider that comes with its own images, css, and js files organized into subfolders. Where should I place it? It doesn't seem right to scatter these files into their own folders. Any suggestions on how to approach this? Thank you.