I am currently working on a portfolio website project where I am using html, css, js, and django. However, I am facing an issue with loading an image from the assets folder within the static directory.
Here is a snippet of the template code causing the problem:
{% load static%}
...
<div class="col-lg-5 align-items-stretch order-1 order-lg-2 img"
style='background-image: url("assets/img/why-us.png");'
data-aos="zoom-in" data-aos-delay="150"> </div>
All other images are loading properly except for this one, which results in a Syntax error
.