Now we are using hard coded path like below ``` <link rel="shortcut icon" href="/static/images/logo.png"> ``` We should use static macro, e.g. ``` {% load static %} <link rel="shortcut icon" href="{% static 'images/favicon.ico' %}"> ```
Now we are using hard coded path like below
We should use static macro, e.g.