add favicons
BIN
static/favicons/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
static/favicons/android-chrome-256x256.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
static/favicons/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
static/favicons/favicon-16x16.png
Normal file
After Width: | Height: | Size: 577 B |
BIN
static/favicons/favicon-32x32.png
Normal file
After Width: | Height: | Size: 802 B |
BIN
static/favicons/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
18
static/favicons/manifest.json
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"name": "",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/static/favicons/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/static/favicons/android-chrome-256x256.png",
|
||||
"sizes": "256x256",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
BIN
static/favicons/mstile-150x150.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
23
static/favicons/safari-pinned-tab.svg
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||
width="260.000000pt" height="260.000000pt" viewBox="0 0 260.000000 260.000000"
|
||||
preserveAspectRatio="xMidYMid meet">
|
||||
<metadata>
|
||||
Created by potrace 1.11, written by Peter Selinger 2001-2013
|
||||
</metadata>
|
||||
<g transform="translate(0.000000,260.000000) scale(0.100000,-0.100000)"
|
||||
fill="#000000" stroke="none">
|
||||
<path d="M858 1691 c-81 -26 -147 -81 -204 -167 -26 -40 -49 -72 -50 -71 -2 1
|
||||
-8 43 -14 92 -18 152 2 135 -165 135 l-145 0 0 -65 0 -65 85 0 85 0 0 -395 0
|
||||
-395 -85 0 -85 0 0 -65 0 -65 275 0 275 0 0 65 0 65 -110 0 -110 0 0 218 c0
|
||||
203 2 221 24 284 61 174 161 273 294 292 l42 6 0 -115 0 -115 68 0 69 0 11
|
||||
171 c6 95 9 175 7 180 -8 12 -101 29 -158 28 -29 0 -78 -8 -109 -18z"/>
|
||||
<path d="M2058 1691 c-81 -26 -147 -81 -204 -167 -26 -40 -49 -72 -50 -71 -2
|
||||
1 -8 43 -14 92 -18 152 2 135 -165 135 l-145 0 0 -65 0 -65 85 0 85 0 0 -395
|
||||
0 -395 -85 0 -85 0 0 -65 0 -65 275 0 275 0 0 65 0 65 -110 0 -110 0 0 218 c0
|
||||
203 2 221 24 284 61 174 161 273 294 292 l42 6 0 -115 0 -115 68 0 69 0 11
|
||||
171 c6 95 9 175 7 180 -8 12 -101 29 -158 28 -29 0 -78 -8 -109 -18z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -6,6 +6,14 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<link rel="icon" href="/static/favicons/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/static/favicons/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicons/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicons/favicon-16x16.png">
|
||||
<link rel="manifest" href="/static/favicons/manifest.json">
|
||||
<link rel="mask-icon" href="/static/favicons/safari-pinned-tab.svg" color="#5bbad5">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
{% assets 'common_css' %}
|
||||
<link rel="stylesheet" href="{{ ASSET_URL }}">
|
||||
{% endassets %}
|
||||
|
|