Answers for "how to add a favicon in html django"

3

favicon django

<link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}"/>
Posted by: Guest on October-11-2020
0

how add a favicon to django

env > mysite > main > urls.pyfrom django.urls import pathfrom . import viewsfrom django.contrib.staticfiles.storage import staticfiles_storagefrom django.views.generic.base import RedirectViewurlpatterns = [  path('favicon.ico', RedirectView.as_view(url=staticfiles_storage.url('img/favicon.ico')))]
Posted by: Guest on July-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language