diff options
author | Noah Loomans <noahloomans@gmail.com> | 2016-09-30 14:18:06 +0200 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2016-09-30 14:18:06 +0200 |
commit | ae1f968de09f7952b5b4bad369255a0a60cb81b8 (patch) | |
tree | ef671fd91119fabdfbcd82b652af5b180c8808fd | |
parent | aaec51122c34c8c33a25762c6cb3ddcf140f062c (diff) |
added icons and manifest
-rw-r--r-- | public/icons/res/mipmap-hdpi/ic_launcher.png | bin | 0 -> 6503 bytes | |||
-rw-r--r-- | public/icons/res/mipmap-mdpi/ic_launcher.png | bin | 0 -> 3854 bytes | |||
-rw-r--r-- | public/icons/res/mipmap-xhdpi/ic_launcher.png | bin | 0 -> 9631 bytes | |||
-rw-r--r-- | public/icons/res/mipmap-xxhdpi/ic_launcher.png | bin | 0 -> 15315 bytes | |||
-rw-r--r-- | public/icons/res/mipmap-xxxhdpi/ic_launcher.png | bin | 0 -> 23445 bytes | |||
-rw-r--r-- | public/manifest.webmanifest | 29 | ||||
-rw-r--r-- | views/layout.jade | 1 |
7 files changed, 30 insertions, 0 deletions
diff --git a/public/icons/res/mipmap-hdpi/ic_launcher.png b/public/icons/res/mipmap-hdpi/ic_launcher.png Binary files differnew file mode 100644 index 0000000..514ad14 --- /dev/null +++ b/public/icons/res/mipmap-hdpi/ic_launcher.png diff --git a/public/icons/res/mipmap-mdpi/ic_launcher.png b/public/icons/res/mipmap-mdpi/ic_launcher.png Binary files differnew file mode 100644 index 0000000..59bab1d --- /dev/null +++ b/public/icons/res/mipmap-mdpi/ic_launcher.png diff --git a/public/icons/res/mipmap-xhdpi/ic_launcher.png b/public/icons/res/mipmap-xhdpi/ic_launcher.png Binary files differnew file mode 100644 index 0000000..908a6e8 --- /dev/null +++ b/public/icons/res/mipmap-xhdpi/ic_launcher.png diff --git a/public/icons/res/mipmap-xxhdpi/ic_launcher.png b/public/icons/res/mipmap-xxhdpi/ic_launcher.png Binary files differnew file mode 100644 index 0000000..f12048f --- /dev/null +++ b/public/icons/res/mipmap-xxhdpi/ic_launcher.png diff --git a/public/icons/res/mipmap-xxxhdpi/ic_launcher.png b/public/icons/res/mipmap-xxxhdpi/ic_launcher.png Binary files differnew file mode 100644 index 0000000..7a0462e --- /dev/null +++ b/public/icons/res/mipmap-xxxhdpi/ic_launcher.png diff --git a/public/manifest.webmanifest b/public/manifest.webmanifest new file mode 100644 index 0000000..c12683f --- /dev/null +++ b/public/manifest.webmanifest @@ -0,0 +1,29 @@ +{ + "name": "Metis Rooster", + "short_name": "Rooster", + "start_url": "/", + "display": "standalone", + "background_color": "#FFF", + "description": "Een verbeterde rooster pagina voor het metis", + "icons": [{ + "src": "/icons/res/mipmap-mdpi/ic_launcher.png", + "sizes": "48x48", + "type": "image/png" + }, { + "src": "/icons/res/mipmap-hdpi/ic_launcher.png", + "sizes": "72x72", + "type": "image/png" + }, { + "src": "/icons/res/mipmap-xhdpi/ic_launcher.png", + "sizes": "96x96", + "type": "image/png" + }, { + "src": "/icons/res/mipmap-xxhdpi/ic_launcher.png", + "sizes": "144x144", + "type": "image/png" + }, { + "src": "/icons/res/mipmap-xxxhdpi/ic_launcher.png", + "sizes": "192x192", + "type": "image/png" + }] +} diff --git a/views/layout.jade b/views/layout.jade index 2dde0dc..89c6e94 100644 --- a/views/layout.jade +++ b/views/layout.jade @@ -5,6 +5,7 @@ html meta(name='theme-color',content='#F44336') meta(name='viewport', content='width=device-width, initial-scale=1') link(href='https://fonts.googleapis.com/css?family=Roboto', rel='stylesheet') + link(rel='manifest', href='/manifest.webmanifest') script(src='//d2wy8f7a9ursnm.cloudfront.net/bugsnag-3.min.js', data-apikey='bd5c41bb376798642d7ae4701a09a8fb') block head body |