mirror of
https://github.com/PerpetualSoftware/pad.git
synced 2026-09-20 09:33:28 +00:00
f3d66925bc
Generate favicon sizes (16, 32, ico), Apple touch icon (180), PWA icons (192, 512), and web manifest from padicon.png. Add Open Graph meta tags for social sharing previews.
18 lines
662 B
HTML
18 lines
662 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="icon" href="/favicon.ico" sizes="48x48" />
|
|
<link rel="icon" href="/favicon-32x32.png" type="image/png" sizes="32x32" />
|
|
<link rel="icon" href="/favicon-16x16.png" type="image/png" sizes="16x16" />
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
<link rel="manifest" href="/site.webmanifest" />
|
|
<meta name="theme-color" content="#1e293b" />
|
|
%sveltekit.head%
|
|
</head>
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|