Add favicons

This commit is contained in:
Thijs Raymakers 2025-02-27 00:30:52 +01:00
parent 607234d727
commit 215706162d
No known key found for this signature in database
8 changed files with 66 additions and 1 deletions

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
icons/favicon-96x96.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

BIN
icons/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

30
icons/favicon.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 35 KiB

21
icons/site.webmanifest Normal file
View file

@ -0,0 +1,21 @@
{
"name": "Technologia Incognita",
"short_name": "TechInc",
"icons": [
{
"src": "/icons/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/icons/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

View file

@ -1,4 +1,18 @@
<?php require_once("header.php"); ?>
<html lang="<?= $lang->languageCode ?>">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicons -->
<link rel="icon" type="image/png" href="/icons/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/icons/favicon.svg" />
<link rel="shortcut icon" href="/icons/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="TechInc" />
<link rel="manifest" href="/icons/site.webmanifest" />
<!-- Metadata -->
<meta name="description" content="TechInc is a hackerspace in Amsterdam." />
<title>Technologia Incognita</title>
</head>
<body></body>
</html>