From 8f44cab641d1fbbaba892dbccaaca3228b19cc7f Mon Sep 17 00:00:00 2001 From: vimux Date: Mon, 12 Mar 2018 21:28:20 +0300 Subject: [PATCH] Add Web App Manifest --- layouts/partials/header.html | 1 + static/manifest.json | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 static/manifest.json diff --git a/layouts/partials/header.html b/layouts/partials/header.html index b26090b..ea1faf6 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -13,6 +13,7 @@ + {{ template "_internal/google_analytics_async.html" . }} diff --git a/static/manifest.json b/static/manifest.json new file mode 100644 index 0000000..304f337 --- /dev/null +++ b/static/manifest.json @@ -0,0 +1,16 @@ +{ + "background_color": "#2a2a2a", + "theme_color": "#1b1b1b", + "icons": [ + { + "src": "icons/192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/512.png", + "sizes": "512x512", + "type": "image/png" + } + ] +}