What I am trying to do
Insert a static image directly into the index.html file in order to customize it, inside the body section.
What I have tried:
It works if I just render the html file in my browser, but cannot find the image when I run bokeh serve --show … . I have tried creating a folder called static , including the image inside, even creating an images subfolder inside, and then using as route src="/templates/static/images/something.jpg", also src="/static/images/something.jpg" and also skipping the / in all combinations. Also tried just moving the jpg image to the same folder where index.html is located and this works when my browser renders the html, but not with the bokeh serve command.
<div>
<img src="something.jpg" width = "200">
</div>
I am getting: 404 GET /something.jpg (::1) 0.32ms
I am new to Jinja so I am unsure about what kind of things I can use in my index.html that will not be touched (but properly recognized) by bokeh serve.
Thanks