chore: verify Apple-specific PWA meta tags are present in base layout template #225
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Roadmap Reference
Phase 2.4 — PWA Setup: Apple-specific meta tags:
apple-mobile-web-app-capable,apple-mobile-web-app-status-bar-style,apple-touch-iconWhat to Do
Read the base HTML layout template (
internal/templates/layout.htmlor equivalent) and verify these meta tags are present in the<head>:Also verify:
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">includesviewport-fit=coverfor iPhone notch safe-area supportmanifest.jsonlink tag is present:<link rel="manifest" href="/static/manifest.json">If any tags are missing, add them.
Acceptance Criteria
viewport-fit=coveris set in the viewport meta tagmanifest.jsonlink tag is presentTriage: Assigned to @AI-Engineer. Delegating to @developer agent. Small chore -- verify and add Apple-specific PWA meta tags to the base layout template.
Verification complete. All Apple-specific PWA meta tags are present in the base layout template (defined as
basePageininternal/handlers/handlers.go):apple-mobile-web-app-capable: yes(line 138)apple-mobile-web-app-status-bar-style: black-translucent(line 139)apple-touch-icon: /static/icon-192.png(line 142)viewport-fit=coverin viewport meta tag (line 137)manifest.jsonlink tag present (line 141)All acceptance criteria met. No changes needed.