mirror of
https://github.com/quantum5/qcal.git
synced 2025-04-24 17:51:57 -04:00
Create meta tags and favicons for gcal
This commit is contained in:
parent
fe4071a26c
commit
72dac381af
BIN
gcal/public/favicon.ico
Normal file
BIN
gcal/public/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
|
@ -4,7 +4,22 @@
|
||||||
<meta charset="utf-8"/>
|
<meta charset="utf-8"/>
|
||||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico"/>
|
<link rel="icon" href="%PUBLIC_URL%/favicon.ico"/>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<meta name="theme-color" content="#ff0000"/>
|
||||||
|
<meta name="description"
|
||||||
|
content="An interactive version of the Gregorian calendar, showing each day in various other calendars."/>
|
||||||
|
<meta property="og:title" content="Julian Calendar"/>
|
||||||
|
<meta property="og:type" content="website"/>
|
||||||
|
<meta property="og:url" content="%PUBLIC_URL%"/>
|
||||||
|
<meta property="og:description"
|
||||||
|
content="An interactive version of the Julian calendar, showing each day in various other calendars."/>
|
||||||
|
<meta property="og:image" content="%PUBLIC_URL%/logo512.png"/>
|
||||||
|
<meta property="og:image:type" content="image/png"/>
|
||||||
|
<meta property="og:image:width" content="512"/>
|
||||||
|
<meta property="og:image:height" content="512"/>
|
||||||
|
<meta property="og:image:alt" content="A calendar icon that displays the date October 15th."/>
|
||||||
<link rel="canonical" href="%PUBLIC_URL%/"/>
|
<link rel="canonical" href="%PUBLIC_URL%/"/>
|
||||||
|
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png"/>
|
||||||
|
<link rel="manifest" href="%PUBLIC_URL%/manifest.json"/>
|
||||||
<title>Gregorian Calendar</title>
|
<title>Gregorian Calendar</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
BIN
gcal/public/logo.png
Normal file
BIN
gcal/public/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
BIN
gcal/public/logo192.png
Normal file
BIN
gcal/public/logo192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
BIN
gcal/public/logo512.png
Normal file
BIN
gcal/public/logo512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
25
gcal/public/manifest.json
Normal file
25
gcal/public/manifest.json
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"short_name": "Gregorian Calendar",
|
||||||
|
"name": "Gregorian Calendar",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "favicon.ico",
|
||||||
|
"sizes": "48x48 32x32 16x16",
|
||||||
|
"type": "image/x-icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "logo192.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "192x192"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "logo512.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "512x512"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"start_url": ".",
|
||||||
|
"display": "standalone",
|
||||||
|
"theme_color": "#ff0000",
|
||||||
|
"background_color": "#ffffff"
|
||||||
|
}
|
Loading…
Reference in a new issue