Merge pull request 'fix: logo icon on desktop chrome and favicon on mobile' (#4) from develop into main
Reviewed-on: Bebrashield/website#4
@ -105,8 +105,8 @@ params:
|
||||
displayTitle: true
|
||||
displayLogo: true
|
||||
logo:
|
||||
path: images/logo-128x128.svg
|
||||
dark: images/logo-128x128.svg
|
||||
path: images/logo-128x128.png
|
||||
dark: images/logo-128x128.png
|
||||
width: 30
|
||||
height: 15
|
||||
width: wide
|
||||
|
6
layouts/partials/favicons.html
Normal file
@ -0,0 +1,6 @@
|
||||
<link rel="icon shortcut" href="{{ "favicon.ico" | relURL }}" sizes="32x32" />
|
||||
<link rel="icon" href="{{ "favicon-16x16.png" | relURL }}" type="image/png" sizes="16x16" />
|
||||
<link rel="icon" href="{{ "favicon-32x32.png" | relURL }}" type="image/png" sizes="32x32" />
|
||||
<link rel="icon" href="{{ "android-chrome-192x192.png" | relURL }}" type="image/png" sizes="192x192" />
|
||||
<link rel="icon" href="{{ "android-chrome-512x512.png" | relURL }}" type="image/png" sizes="512x512" />
|
||||
<link rel="apple-touch-icon" href="{{ "apple-touch-icon.png" | relURL }}" sizes="180x180" />
|
BIN
static/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
static/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
static/favicon-16x16.png
Normal file
After Width: | Height: | Size: 666 B |
BIN
static/favicon-32x32.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 70 KiB |
20
static/site.webmanifest
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "Hextra",
|
||||
"short_name": "Hextra",
|
||||
"start_url": "index.html",
|
||||
"icons": [
|
||||
{
|
||||
"src": "android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#000000",
|
||||
"background_color": "#000000",
|
||||
"display": "standalone"
|
||||
}
|