Django favicon plus is a simple django app which allows you to upload a image and it renders a wide variety for html link tags to display the favicon. These different tags are used for bookmark links on mobile devices or they appear if you favorite a website in your browser.
add app to `INSTALLED_APPS` List in your `settings.py` file, make sure `sites`-app is also installed and a url is specified in the admin backend
Add app to `INSTALLED_APPS` List in your `settings.py` file, make sure `sites`-app is also installed and a URL is specified in the admin backend
INSTALLED_APPS = (
...
...
@@ -19,7 +19,7 @@ add app to `INSTALLED_APPS` List in your `settings.py` file, make sure `sites`-a
...
)
The defaulf`FAVICON_CONFIG` look like this, if you want something else you can define it in your settings.py. The key of the dictionary is the value for the `rel` attribut of the link tag, while the list in the value are the sizes for the `size` attribute and the image resizing.
The default`FAVICON_CONFIG` look like this, if you want something else you can define it in your settings.py. The key of the dictionary is the value for the `rel` attribute of the link tag, while the list in the value are the sizes for the `size` attribute and the image resizing.
FAVICON_CONFIG = {
'shortcut icon': [16 ,32 ,48 ,128, 192],
...
...
@@ -29,7 +29,7 @@ The defaulf `FAVICON_CONFIG` look like this, if you want something else you can