I am attempting to publish my website that I have uploaded into a github repository. When I run the website locally (using django) I can see it working perfectly with all of my backgrounds and animations from the css files. This was using the index.html file in the templates folder.
When I attempted to run using the github pages, I had to create an index.html file in the main folder so that it can be run from the start. However, this causes my website to include only text files and images, no animations, backgrounds, or colors from my css files.
The settings.py has STATIC_URL = '/static/'
How can I use the new index.html to call all of my css files?
Last time I checked, GitHub Pages is only for static applications and won't be able to host a Django application. You can find more information here.