However inside my javascript file. I want to make use of an image. That is:
Javascript file is d6.js and it contains this code
var imageBank = baseUrl + "static/Game/blank.gif";
And then my html has this
{% load staticfiles %}
<script src="{% static 'Game/d6.js' %}"></script>
However when i render my html file the javascript file is unable to locate the img file (blank.gif). How do i get to reference an img file inside the static directory?