blob: 5927fcafeeeace10ce031bcf7148ac7e2f1eac4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<html>
<head>
<title>OpenQuran - Redirecting</title>
<link rel="manifest" href="src/manifest.json">
<!-- ios support -->
<link rel="apple-touch-icon" href="images/favicon.png">
<meta name="apple-mobile-web-app-status-bar" content="#f3f3f3">
</head>
<body>
<script src="src/scripts/main.js" defer></script>
<script src="src/scripts/service-worker.js" defer></script>
<a href="src/">Click here if page doesn't load</a>
<script>
try {
process.versions['electron'];
window.location.href = "src/index.html";
} catch {
window.location.href = "src/";
}
</script>
</body>
</html>
|