-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.html
128 lines (116 loc) · 5.63 KB
/
test.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en" style="margin: 5px;">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- <link rel="stylesheet" href="https://piyazon.top/repo/dep/css/style.css"> -->
<link rel="stylesheet" href="./dep/css/style.css">
<title>Test</title>
<!-- <script>
$(function(){
$("#includeHeader").load("./header.html");
$("#includeFooter").load("./footer.html");
});
</script> -->
</head>
<body>
<!-- Header -->
<div id="includeHeader">
<p id="ios_version"></p>
<script>
function iOSversion() {
if (/iP(hone|od|ad)/.test(navigator.platform)) {
// supports iOS 2.0 and later: <http://bit.ly/TJjs1V>
var v = (navigator.appVersion).match(/OS (\d+)_(\d+)_?(\d+)?/);
return [parseInt(v[1], 10), parseInt(v[2], 10), parseInt(v[3] || 0, 10)];
}
}
ver = iOSversion();
if (ver[0] < 15) {
$("#ios_version").attr("class", "alert alert-success").html('Your device is running iOS '+ver[0]+'.'+ver[1]+'.'+ver[2]+', you are safe to install.');
}else{
$("#ios_version").attr("class", "alert alert-warning").html('Your device is running iOS '+ver[0]+'.'+ver[1]+'.'+ver[2]+', not tested on your device yet.');
}
</script>
<div class="container px-4 py-5" id="icon-grid">
<h2 class="pb-2 border-bottom">Details</h2>
<div class="row row-cols-2 g-4 py-5">
<div class="col d-flex align-items-start">
<img cdn="yes" src="/code-branch-solid.svg" alt="Version" width="1.75em" height="1.75em">
<div>
<h4 class="fw-bold mb-0">Current Version</h4>
<p id="cu-version">v2.0</p>
</div>
</div>
<div class="col d-flex align-items-start">
<svg class="bi text-muted flex-shrink-0 me-3" width="1.75em" height="1.75em"><use xlink:href="#cpu-fill"></use></svg>
<div>
<h4 class="fw-bold mb-0">Featured title</h4>
<p>Paragraph of text beneath the heading to explain the heading.</p>
</div>
</div>
<div class="col d-flex align-items-start">
<svg class="bi text-muted flex-shrink-0 me-3" width="1.75em" height="1.75em"><use xlink:href="#calendar3"></use></svg>
<div>
<h4 class="fw-bold mb-0">Featured title</h4>
<p>Paragraph of text beneath the heading to explain the heading.</p>
</div>
</div>
<div class="col d-flex align-items-start">
<svg class="bi text-muted flex-shrink-0 me-3" width="1.75em" height="1.75em"><use xlink:href="#home"></use></svg>
<div>
<h4 class="fw-bold mb-0">Featured title</h4>
<p>Paragraph of text beneath the heading to explain the heading.</p>
</div>
</div>
<div class="col d-flex align-items-start">
<svg class="bi text-muted flex-shrink-0 me-3" width="1.75em" height="1.75em"><use xlink:href="#speedometer2"></use></svg>
<div>
<h4 class="fw-bold mb-0">Featured title</h4>
<p>Paragraph of text beneath the heading to explain the heading.</p>
</div>
</div>
<div class="col d-flex align-items-start">
<svg class="bi text-muted flex-shrink-0 me-3" width="1.75em" height="1.75em"><use xlink:href="#toggles2"></use></svg>
<div>
<h4 class="fw-bold mb-0">Featured title</h4>
<p>Paragraph of text beneath the heading to explain the heading.</p>
</div>
</div>
<div class="col d-flex align-items-start">
<svg class="bi text-muted flex-shrink-0 me-3" width="1.75em" height="1.75em"><use xlink:href="#geo-fill"></use></svg>
<div>
<h4 class="fw-bold mb-0">Featured title</h4>
<p>Paragraph of text beneath the heading to explain the heading.</p>
</div>
</div>
<div class="col d-flex align-items-start">
<svg class="bi text-muted flex-shrink-0 me-3" width="1.75em" height="1.75em"><use xlink:href="#tools"></use></svg>
<div>
<h4 class="fw-bold mb-0">Featured title</h4>
<p>Paragraph of text beneath the heading to explain the heading.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Tweaks Custom -->
<script>
var properties = {
"test-device" : "ios 14.8.1",
"c-version": "v2.1"
}
</script>
<div id="includeFooter">
<h1>Hello</h1>
</div>
<script src="https://piyazon.top/repo/dep/js/index.js"></script>
</body>
</html>