Browse Source

added favicon

main
Simon Bowie 1 year ago
parent
commit
c633326b4d
4 changed files with 4 additions and 0 deletions
  1. BIN
      web/app/static/images/cropped-favicon-180x180.jpg
  2. BIN
      web/app/static/images/cropped-favicon-192x192.jpg
  3. BIN
      web/app/static/images/cropped-favicon-32x32.jpg
  4. +4
    -0
      web/app/templates/base.html

BIN
web/app/static/images/cropped-favicon-180x180.jpg View File

Before After
Width: 180  |  Height: 180  |  Size: 6.3KB

BIN
web/app/static/images/cropped-favicon-192x192.jpg View File

Before After
Width: 192  |  Height: 192  |  Size: 7.0KB

BIN
web/app/static/images/cropped-favicon-32x32.jpg View File

Before After
Width: 32  |  Height: 32  |  Size: 953B

+ 4
- 0
web/app/templates/base.html View File

@@ -19,6 +19,10 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- favicon -->
<link rel="icon" href="{{ url_for('static',filename='images/cropped-favicon-32x32.jpg') }}" sizes="32x32" />
<link rel="icon" href="{{ url_for('static',filename='images/cropped-favicon-192x192.jpg') }}" sizes="192x192" />
<link rel="apple-touch-icon" href="{{ url_for('static',filename='images/cropped-favicon-180x180.jpg') }}" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link href="{{ url_for('static',filename='styles/custom.css') }}" rel="stylesheet">

Loading…
Cancel
Save