I've been struggling with a seemingly silly issue in my code. I can't figure out why it's not working properly. Here is the directory structure of my Django Project:
https://i.sstatic.net/0tVo4.png
The HTML file I'm targeting (index.html) is located in the aboutme/templates/ folder. I want to render it from the view.py in my aboutme app. My CSS and JS files are inside the "assets" folder, which should be used by index.html. However, when I run the server, the CSS files don't seem to be applied to my index.html page. I have added the static files path in my settings.py and referenced the static path in index.html for the CSS and JS files, but still no changes are reflected in the html file.
Here's a snippet of my settings.py file:
https://i.sstatic.net/jjqMk.png
And here's a snippet of the index.html file where I am trying to access the CSS files: