I am having trouble importing font-awesome into my application. I've tried the following code:
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
However, this is causing an error in the JavaScript console:
The stylesheet '' was not loaded because it violates the Content Security Policy directive: "style-src 'self' 'unsafe-inline'".
My Django app is a djangae (Django + GoogleAppEngine) example app that I'm using as a starting point for my project. You can find it here: https://github.com/davide-ceretti/googleappengine-djangae-blog.
I am implementing this import in base.html. How can I resolve this issue? I suspect it's a setting problem, but I have been unable to pinpoint it.
p.s. I am encountering the same error with another import:
<link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>