Nikita Karamov 2021-01-17 01:44:33 +03:00
parent 4e16129279
commit 3c4b76a176
No known key found for this signature in database
GPG Key ID: EA4E7DECEEA050E4
9 changed files with 15 additions and 5 deletions

BIN
docs/apple-touch-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 354 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 682 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

BIN
docs/icon-192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

BIN
docs/icon-512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

1
docs/icon.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -7,6 +7,8 @@
<meta name="keywords" content="share buttons, sharing, social networks, share via, share on"> <meta name="keywords" content="share buttons, sharing, social networks, share via, share on">
<meta name="author" content="Nikita Karamov"> <meta name="author" content="Nikita Karamov">
<title>shareon</title>
<meta property="og:title" content="shareon"> <meta property="og:title" content="shareon">
<meta property="og:url" content="https://shareon.js.org"> <meta property="og:url" content="https://shareon.js.org">
<meta property="og:image" content="https://raw.githubusercontent.com/NickKaramoff/shareon/main/assets/banner.png"> <meta property="og:image" content="https://raw.githubusercontent.com/NickKaramoff/shareon/main/assets/banner.png">
@ -14,8 +16,6 @@
<meta name="twitter:card" content="summary_large_image"> <meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@NickKaramoff"> <meta name="twitter:creator" content="@NickKaramoff">
<title>shareon</title>
<link rel="stylesheet" href="https://igoradamenko.github.io/awsm.css/css/awsm.min.css"> <link rel="stylesheet" href="https://igoradamenko.github.io/awsm.css/css/awsm.min.css">
<style> <style>
@ -28,8 +28,10 @@
} }
</style> </style>
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png"> <link rel="manifest" href="/site.webmanifest">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png"> <link rel="icon" href="/favicon.ico">
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
</head> </head>
<body> <body>
<header> <header>

7
docs/site.webmanifest Normal file
View File

@ -0,0 +1,7 @@
{
"name": "shareon",
"icons": [
{ "src": "/icon-192.png", "type": "image/png", "sizes": "192x192" },
{ "src": "/icon-512.png", "type": "image/png", "sizes": "512x512" }
]
}