blob: 73538512f8b12884b222b7b28ebc6cd72414fe4d (
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
28
|
<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">
<meta name="theme-color" content="#db4938" />
</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>
|