From 2a7f6b2ecb6296238bf8e055d1ae943b69647622 Mon Sep 17 00:00:00 2001
From: Tom <thomas.hodson@ecmwf.int>
Date: Mon, 24 Mar 2025 11:32:50 +0000
Subject: [PATCH] add manifest to enable full screen safari

---
 _includes/default_head_tags.html |  2 ++
 manifest.json                    | 13 +++++++++++++
 2 files changed, 15 insertions(+)
 create mode 100644 manifest.json

diff --git a/_includes/default_head_tags.html b/_includes/default_head_tags.html
index 24a32af..205dca1 100644
--- a/_includes/default_head_tags.html
+++ b/_includes/default_head_tags.html
@@ -11,6 +11,8 @@
 <meta name="fediverse:creator" content="@Tomhodson@tech.lgbt">
 <meta property="og:type" content="website">
 
+<link rel="manifest" href="/manifest.json">
+
 <!-- Theme tags -->
 <meta name="theme-color" content="#fcfcfc">
 <link rel="icon" type="image/x-icon" href="/favicon.ico">
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..63815b6
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,13 @@
+{
+  "name": "Tom Hodson's Website",
+  "short_name": "Tom's Site",
+  "start_url": "https://thomashodson.com/",
+  "display": "standalone",
+  "icons": [
+    {
+      "src": "apple-touch-icon.png",
+      "sizes": "512x512",
+      "type": "image/png"
+    }
+  ]
+}