added favicons
BIN
images/icons/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
images/icons/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 53 KiB |
BIN
images/icons/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 15 KiB |
9
images/icons/browserconfig.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="./images/icons/mstile-150x150.png"/>
|
||||
<TileColor>#b91d47</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
BIN
images/icons/favicon-16x16.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
images/icons/favicon-32x32.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
images/icons/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
images/icons/mstile-150x150.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
1627
images/icons/safari-pinned-tab.svg
Normal file
After Width: | Height: | Size: 115 KiB |
19
images/icons/site.webmanifest
Normal file
@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "",
|
||||
"short_name": "",
|
||||
"icons": [
|
||||
{
|
||||
"src": "android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
32
index.html
@ -17,6 +17,38 @@
|
||||
<noscript>
|
||||
<link rel="stylesheet" href="assets/css/noscript.css"
|
||||
/></noscript>
|
||||
<!-- Favicon magic stuff -->
|
||||
<link
|
||||
rel="apple-touch-icon"
|
||||
sizes="180x180"
|
||||
href="./images/icons/apple-touch-icon.png"
|
||||
/>
|
||||
<link
|
||||
rel="icon"
|
||||
type="image/png"
|
||||
sizes="32x32"
|
||||
href="./images/icons/favicon-32x32.png"
|
||||
/>
|
||||
<link
|
||||
rel="icon"
|
||||
type="image/png"
|
||||
sizes="16x16"
|
||||
href="./images/icons/favicon-16x16.png"
|
||||
/>
|
||||
<link rel="manifest" href="./images/icons/site.webmanifest" />
|
||||
<link
|
||||
rel="mask-icon"
|
||||
href="./images/icons/safari-pinned-tab.svg"
|
||||
color="#d55b5b"
|
||||
/>
|
||||
<link rel="shortcut icon" href="./images/icons/favicon.ico" />
|
||||
<meta name="msapplication-TileColor" content="#b91d47" />
|
||||
<meta
|
||||
name="msapplication-config"
|
||||
content="./images/icons/browserconfig.xml"
|
||||
/>
|
||||
<meta name="theme-color" content="#ffffff" />
|
||||
<!-- End of the facicon magic stuff -->
|
||||
</head>
|
||||
|
||||
<body class="is-preload">
|
||||
|