-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (59 loc) · 2.45 KB
/
index.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- generate favicon from https://realfavicongenerator.net -->
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<link rel="manifest" href="./site.webmanifest">
<link rel="mask-icon" href="./safari-pinned-tab.svg" color="#2b5797">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="theme-color" content="#ffffff">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!-- style -->
<style type='text/css'>
html, body {
height: 100%;
}
.navbar sub {
font-size: 60%;
}
iframe {
border: 0;
width: 100%;
height: calc(100% - 56px);
}
</style>
<title>บันทึกไทยชนะ</title>
</head>
<body>
<!-- navbar -->
<nav class="navbar navbar-light bg-light">
<a class="navbar-brand" href="./index.html" title="กลับสู่หน้าหลัก">
<img src="./android-chrome-192x192.png" height="30" class="d-inline-block align-top" alt="" loading="lazy">
บันทึกไทยชนะ
<sub></sub>
</a>
<a class='btn btn-secondary btn-home' href='#/'>หน้าแรก</a>
</nav>
<!-- iframe -->
<iframe title="my-frame" class="d-flex flex-column flex-grow-1 justify-content-center" src='./list.html'></iframe>
<!-- bottom scripts -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<!-- app scripts -->
<script src="./thaichana.js"></script>
<script src="./app.js"></script>
<script>
$('.navbar sub').html(APP_VERSION);
$('.btn-home').click(_ => $('iframe').attr('src', './list.html'));
// if open with safari, redirect to ios index
if (Thaichana.is_safari()) {
location.href = './index_ios.html';
}
</script>
</body>
</html>