Skip to content

Commit 8faae93

Browse files
committed
Web Manifest + icons
Added Web Manifest and some basic icons + favicon
1 parent 4d66a3b commit 8faae93

File tree

5 files changed

+22
-0
lines changed

5 files changed

+22
-0
lines changed

favicon.ico

19.1 KB
Binary file not shown.

icon/lowres.ico

19.1 KB
Binary file not shown.

icon/lowres.webp

910 Bytes
Binary file not shown.

index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
<html ng-app="openevent" ng-controller="AppController as appCtrl">
33
<head lang="en">
44

5+
<!-- web app manifest: https://w3c.github.io/manifest/ -->
6+
<link rel="manifest" href="manifest.webmanifest">
7+
58
<script src="config.js"></script>
69

710
<!-- inject:css -->

manifest.webmanifest

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"lang": "en",
3+
"name": "Open Event Web-App",
4+
"short_name": "Open Event",
5+
"icons": [{
6+
"src": "icon/lowres",
7+
"sizes": "128x128",
8+
"type": "image/webp"
9+
}, {
10+
"src": "icon/lowres",
11+
"sizes": "128x128"
12+
}],
13+
"scope": "/",
14+
"start_url": "/#/sessions",
15+
"display": "fullscreen",
16+
"orientation": "landscape",
17+
"theme_color": "#ffeb3b",
18+
"background_color": "white"
19+
}

0 commit comments

Comments
 (0)