mirror of
https://github.com/sigmasternchen/drnk.me
synced 2025-03-15 01:38:55 +00:00
feat: Add favicons
This commit is contained in:
parent
2fb1cfcacf
commit
781b400c1e
7 changed files with 20 additions and 0 deletions
BIN
html/static/icons/favicon16.png
Normal file
BIN
html/static/icons/favicon16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6 KiB |
BIN
html/static/icons/favicon180.png
Normal file
BIN
html/static/icons/favicon180.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
BIN
html/static/icons/favicon192.png
Normal file
BIN
html/static/icons/favicon192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 31 KiB |
BIN
html/static/icons/favicon32.png
Normal file
BIN
html/static/icons/favicon32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.3 KiB |
BIN
html/static/icons/favicon48.ico
Normal file
BIN
html/static/icons/favicon48.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.4 KiB |
15
html/static/icons/site.webmanifest
Normal file
15
html/static/icons/site.webmanifest
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"short_name": "drnk.me",
|
||||
"name": "drnk.me: URL Shortener",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/static/icons/favicon192.png",
|
||||
"type": "image/png",
|
||||
"sizes": "192x192"
|
||||
}
|
||||
],
|
||||
"id": "/?source=pwa",
|
||||
"start_url": "/?source=pwa",
|
||||
"background_color": "lightgrey",
|
||||
"display": "standalone"
|
||||
}
|
|
@ -4,6 +4,11 @@
|
|||
<title>
|
||||
<?php echo $data["title"] ?? "drnk.me"; ?>
|
||||
</title>
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/static/icons/favicon32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/static/icons/favicon16.png">
|
||||
<link rel="shortcut icon" href="/static/icons/favicon48.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/static/icons/favicon180.png">
|
||||
<link rel="manifest" href="/static/icons/site.webmanifest">
|
||||
<link rel="stylesheet" href="/static/css/main.css">
|
||||
<link rel="stylesheet" href="/static/css/fontawesome.min.css">
|
||||
<script src="/static/libs/htmx.js"></script>
|
||||
|
|
Loading…
Reference in a new issue