From 73092c3a10fa4475ba4672bd5e074fbef48cc9bb Mon Sep 17 00:00:00 2001
From: finga <finga@onders.org>
Date: Sun, 7 May 2023 19:15:30 +0200
Subject: [PATCH 1/2] credits: Fix typo

---
 content/credits.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/credits.md b/content/credits.md
index f070b83..80fb826 100644
--- a/content/credits.md
+++ b/content/credits.md
@@ -3,7 +3,7 @@ title = "Credits"
 template = "credits.html"
 +++
 
-This webiste uses the
+This website uses the
 [onders.org](https://git.onders.org/finga/onders.org_zola_theme.git)
 Zola theme.
 

From be9da2307056084e53c5a1db52ca302737bada33 Mon Sep 17 00:00:00 2001
From: finga <finga@onders.org>
Date: Sun, 7 May 2023 19:15:40 +0200
Subject: [PATCH 2/2] templates: Add apple compatibility drivel

Add meta tag to let apple devices know about their capabilities.
---
 templates/base.html | 1 +
 1 file changed, 1 insertion(+)

diff --git a/templates/base.html b/templates/base.html
index a2c2939..b63d144 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -2,6 +2,7 @@
 <html lang="de">
   <head>
     <meta charset="utf-8">
+    <meta name="apple-mobile-web-app-capable" content="yes">
     <meta name="viewport" content="width=device-width, initial-scale=1">
     <meta name="description" content="{{ config.description }}">
     <title>{% block title %}{% endblock title %}</title>