Browse Source

Add favicon. Fix #28.

windows
Florian N 12 years ago
parent
commit
2b4a60f33b
  1. 0
      static/fonts/fontawesome-webfont.eot
  2. 0
      static/fonts/fontawesome-webfont.svg
  3. 0
      static/fonts/fontawesome-webfont.ttf
  4. 0
      static/fonts/fontawesome-webfont.woff
  5. 0
      static/fonts/glyphicons-halflings-regular.eot
  6. 0
      static/fonts/glyphicons-halflings-regular.svg
  7. 0
      static/fonts/glyphicons-halflings-regular.ttf
  8. 0
      static/fonts/glyphicons-halflings-regular.woff
  9. BIN
      static/img/favicon.ico
  10. 2
      templates/base_auth.html
  11. 1
      templates/main.html

0
static/fonts/fontawesome-webfont.eot

0
static/fonts/fontawesome-webfont.svg

0
static/fonts/fontawesome-webfont.ttf

0
static/fonts/fontawesome-webfont.woff

0
static/fonts/glyphicons-halflings-regular.eot

0
static/fonts/glyphicons-halflings-regular.svg

0
static/fonts/glyphicons-halflings-regular.ttf

0
static/fonts/glyphicons-halflings-regular.woff

BIN
static/img/favicon.ico

2
templates/base_auth.html

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="{% static "img/favicon.ico" %}">
<link rel="icon" href="{% static "img/favicon.ico" %}">
<title>{% block title %}PyDash - Authentication{% endblock %}</title>
<link href="{% static "css/bootstrap.min.css" %}" rel="stylesheet">
<link href="{% static "css/style.css" %}" rel="stylesheet">

1
templates/main.html

@ -4,6 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="icon" href="{% static "img/favicon.ico" %}">
<title>{% block title %}PyDash v{{ version }}{% endblock %}</title>
<link href="{% static "css/bootstrap.min.css" %}" rel="stylesheet">
<link href="{% static "css/bootstrap-responsive.min.css" %}" rel="stylesheet">

Loading…
Cancel
Save