-
Notifications
You must be signed in to change notification settings - Fork 2
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
c425099
commit f36b2fd
Showing
1 changed file
with
31 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head><title>TIDO</title> | ||
<meta charset="utf-8"> | ||
<meta name="description" content=""> | ||
<meta name="format-detection" content="telephone=no"> | ||
<meta name="msapplication-tap-highlight" content="no"> | ||
<meta name="viewport" content="initial-scale=1,maximum-scale=5,minimum-scale=1,width=device-width"> | ||
<link rel="icon" type="image/x-icon" href="favicon.ico"> | ||
<link rel="stylesheet" href="dist/tido.css"> | ||
<style> | ||
html, body { | ||
margin: 0; | ||
} | ||
#app { | ||
height: 100vh; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<noscript><strong>We're sorry but TIDO doesn't work properly without JavaScript enabled. Please enable it to | ||
continue.</strong></noscript> | ||
<div id="app"></div> | ||
<script src="dist/tido.js"></script> | ||
<script> | ||
window.addEventListener('load', function () { | ||
window.tido = new window.Tido(); | ||
}); | ||
</script> | ||
</body> | ||
</html> |