diff options
| author | Christine Dodrill <me@christine.website> | 2018-10-20 13:03:36 -0700 |
|---|---|---|
| committer | Christine Dodrill <me@christine.website> | 2018-10-20 13:05:46 -0700 |
| commit | cb2d716b38ca330b4d183a47ff9a8142fdf58c7f (patch) | |
| tree | ddb079bf18620b1725da92fbb8e202577ef887c3 | |
| parent | d2ff4407993e4511e0225c12964bc07cd8d02be6 (diff) | |
| download | xesite-cb2d716b38ca330b4d183a47ff9a8142fdf58c7f.tar.xz xesite-cb2d716b38ca330b4d183a47ff9a8142fdf58c7f.zip | |
templates/base: add PWA manifest
| -rw-r--r-- | static/manifest.json | 9 | ||||
| -rw-r--r-- | templates/base.html | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/static/manifest.json b/static/manifest.json new file mode 100644 index 0000000..3fee2f5 --- /dev/null +++ b/static/manifest.json @@ -0,0 +1,9 @@ +{ + "name": "Christine Dodrill", + "short_name": "Christine", + "theme_color": "#ffcbe4", + "background_color": "#fa99ca", + "display": "standalone", + "scope": "/", + "start_url": "/" +} diff --git a/templates/base.html b/templates/base.html index 13722a0..52a98fc 100644 --- a/templates/base.html +++ b/templates/base.html @@ -5,6 +5,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="/css/hack.css" /> <link rel="stylesheet" href="/css/gruvbox-dark.css" /> + <link rel="manifest" href="/static/manifest.json" /> <link rel="alternate" type="application/rss+xml" href="https://christine.website/blog.rss" /> <link rel="alternate" type="application/atom+xml" href="https://christine.website/blog.atom" /> |
