-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0d32eba
commit 577d644
Showing
15 changed files
with
295 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Slow Calendar</title> | ||
<link rel="icon" type="image/png" href="https://edgestatic.azureedge.net/welcome/static/favicon.png"> | ||
<link rel="stylesheet" href="app.css"> | ||
<meta charset="UTF-8"> | ||
<title>Slow Calendar</title> | ||
<link rel="icon" type="image/png" href="icon-48.png"> | ||
<link rel="stylesheet" href="app.css"> | ||
<link rel="manifest" href="manifest.json" /> | ||
</head> | ||
|
||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="bundle.js"></script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"name": "Slow Calendar", | ||
"short_name": "slow-calendar", | ||
"description": "A calendar app with a focus on simplicity and the ability to pin today's events to the browser's side panel", | ||
"lang": "en-US", | ||
"start_url": "./", | ||
"scope": "./", | ||
"theme_color": "white", | ||
"background_color": "white", | ||
"display": "standalone", | ||
"edge_side_panel": {}, | ||
"icons": [ | ||
{ | ||
"src": "./icon.png", | ||
"sizes": "512x512" | ||
}, | ||
{ | ||
"src": "./icon-256.png", | ||
"sizes": "256x256" | ||
}, | ||
{ | ||
"src": "./icon-128.png", | ||
"sizes": "128x128" | ||
}, | ||
{ | ||
"src": "./icon-64.png", | ||
"sizes": "64x64" | ||
}, | ||
{ | ||
"src": "./icon-48.png", | ||
"sizes": "48x48" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.