Skip to content

Commit

Permalink
Add web app manifest #61
Browse files Browse the repository at this point in the history
  • Loading branch information
caebr committed Nov 9, 2023
1 parent 3a90240 commit 1017f57
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#EA161F" />
<title>Evento</title>
<link rel="manifest" href="/manifest.json" />
<link rel="stylesheet" href="./src/index.css" />
<script src="/settings.js"></script>
<script src="/apps/webapp-schulverwaltung/settings.js"></script>
Expand Down
15 changes: 15 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "Evento",
"short_name": "EVT",
"start_url": "/",
"display": "standalone",
"background_color": "#fff",
"description": "Schulverwaltungsapplikation des Kantons Bern",
"theme_color": "#EA161F",
"icons": [
{
"src": "icon.svg",
"sizes": "any"
}
]
}

0 comments on commit 1017f57

Please sign in to comment.