-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (21 loc) · 822 Bytes
/
index.html
File metadata and controls
24 lines (21 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="description" content="Autos are now a swipe away!">
<title>Fliver Rider</title>
<link rel="shortcut icon" type="image/ico" href="./assets/favicon.png" />
<script>
function openLink() {
if (/Android/i.test(navigator.userAgent)) {
window.location.href = "https://play.google.com/store/apps/details?id=dev.fliver.rider";
} else if (/iPhone|iPad|iPod/i.test(navigator.userAgent)) {
window.location.href = "https://apps.apple.com/us/app/fliver-rider/id1498074830?ls=1";
} else {
window.location.href = "https://github.com/fliverdev/rider";
}
}
</script>
</head>
<body onload="openLink()"></body>
</html>