Website: PWA manifest for iOS home screen install + background audio

Add to Home Screen on iOS to get background playback, standalone
app mode, and the album cover as the app icon.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-04 13:39:27 -04:00
parent dec607e6ae
commit d6c003514a
2 changed files with 22 additions and 0 deletions
+6
View File
@@ -17,6 +17,12 @@
<meta name="twitter:image" content="https://interpretations.kennethreitz.org/cover.png">
<meta property="og:url" content="https://interpretations.kennethreitz.org/">
<link rel="icon" type="image/png" href="cover.png">
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" href="cover.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Interpretations">
<meta name="theme-color" content="#0a0a0a">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
+16
View File
@@ -0,0 +1,16 @@
{
"name": "Interpretations — Infinite State",
"short_name": "Interpretations",
"description": "24 tracks written in Python. Sitar meets 808.",
"start_url": "/",
"display": "standalone",
"background_color": "#0a0a0a",
"theme_color": "#0a0a0a",
"icons": [
{
"src": "cover.png",
"sizes": "1024x1024",
"type": "image/png"
}
]
}