How can I get a favicon to show up in my django app?

If you have a base or header template that’s included everywhere why not include the favicon there with basic HTML?

<link rel="shortcut icon" type="image/png" href="https://stackoverflow.com/questions/21938028/{% static"favicon.ico' %}"/>

Leave a Comment