Skip to content

Commit 2d5ba04

Browse files
committed
feat: add favicon and web app manifest for improved PWA support
1 parent 37fa1a8 commit 2d5ba04

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

_includes/head_custom.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
<!-- Favicon -->
2+
<link rel="icon" type="image/svg+xml" href="{{ '/assets/images/icon.svg' | relative_url }}">
3+
<link rel="apple-touch-icon" href="{{ '/assets/images/icon.svg' | relative_url }}">
4+
5+
<!-- Web App Manifest for Android/Chrome install -->
6+
<link rel="manifest" href="{{ '/site.webmanifest' | relative_url }}">
7+
<meta name="theme-color" content="#1e1e1e">
8+
19
<style>
210
/* Fix SVG sizing - SVGs need explicit dimensions via inline styles */
311
/* Footer logo sizing */

site.webmanifest

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "Plugin Development Docs for Unraid®",
3+
"short_name": "Unraid Plugin Docs",
4+
"description": "Community-maintained documentation for building plugins for Unraid®",
5+
"start_url": "/",
6+
"display": "standalone",
7+
"background_color": "#1e1e1e",
8+
"theme_color": "#1e1e1e",
9+
"icons": [
10+
{
11+
"src": "/assets/images/icon.svg",
12+
"sizes": "any",
13+
"type": "image/svg+xml",
14+
"purpose": "any maskable"
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)