Browse Source

fix favicon

master
erichhasl 8 years ago
parent
commit
75903f8ed6
4 changed files with 3 additions and 1 deletions
  1. BIN
      web_dev/sas_web/static/public/images/favicon-16x16.png
  2. BIN
      web_dev/sas_web/static/public/images/favicon-32x32.png
  3. BIN
      web_dev/sas_web/static/public/images/favicon-64x64.png
  4. +3
    -1
      web_dev/sas_web/templates/public/base.html

BIN
web_dev/sas_web/static/public/images/favicon-16x16.png View File

Before After
Width: 16  |  Height: 16  |  Size: 1.0KB

BIN
web_dev/sas_web/static/public/images/favicon-32x32.png View File

Before After
Width: 32  |  Height: 32  |  Size: 1.9KB

BIN
web_dev/sas_web/static/public/images/favicon-64x64.png View File

Before After
Width: 64  |  Height: 64  |  Size: 3.9KB

+ 3
- 1
web_dev/sas_web/templates/public/base.html View File

@@ -2,7 +2,9 @@


<html> <html>
<head> <head>
<link rel="shortcut icon" type="image/x-icon" href="{% static "public/images/favicon.ico" %}">
<link rel="shortcut icon" type="image/png" href="{% static "public/images/favicon-16x16.png" %}">
<link rel="shortcut icon" type="image/png" href="{% static "public/images/favicon-32x32.png" %}">
<link rel="shortcut icon" type="image/png" href="{% static "public/images/favicon-64x64.png" %}">
<title> <title>
{% if appname == "startpage" %}Startseite - {% endif %} {% if appname == "startpage" %}Startseite - {% endif %}
{% if appname == "datenbank" %}Datenbank - {% endif %} {% if appname == "datenbank" %}Datenbank - {% endif %}


Loading…
Cancel
Save