I am building a gtk desktop application. The main part of my views are HTML. So I make use of the Python implementation of Webkit. The problem is, that I cant include images, as Webkit does not allow to load images from local file system:
<img src="file://{{media_url}}_theme/media/img/eft.png"/>
=> This will cause a "Not allowed to load local resource".
Is there a way to load static files like images or css-files locally?