-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
53 lines (51 loc) · 2.22 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta charset="UTF-8">
<title>MYCovid API2</title>
<!-- description -->
<meta name="description" content="Documentation for using, build the MyCovid API 2.0">
<!-- keywords -->
<meta name='keywords' content="covid api, malaysia covidapi, mycovid api, data api, malaysia vaccination data">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/themes/vue.css">
<script src="https://kit.fontawesome.com/ba1aa6d09b.js" crossorigin="anonymous"></script>
</head>
<body>
<nav>
<a href="#/README.md"><i class="fa-solid fa-file-lines"></i></a>
<a href="#/example.md"><i class="fa-solid fa-code"></i></a>
<a href="#/zh-cn.md"><i class="fa-solid fa-language"></i></a>
</nav>
<div id="app"></div>
<script>
window.$docsify = {
footer: {
copy: '<span>©</span>',
auth: '<strong><a href="https://github.com/manho30" target="_blank">Man Ho</a></strong> all right reserved' ,
pre: '<hr/>',
style: 'font-size: 18px; text-align: center;',
},
}
</script>
<!-- count -->
<script src="//unpkg.com/docsify-count/dist/countable.min.js"></script>
<!--Footer-->
<script src="//unpkg.com/docsify-footer-enh/dist/docsify-footer-enh.min.js"></script>
<!--Back to top-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/wugenqiang/NoteBook@master/plugin/jquery.goup.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$.goup({
trigger: 100,
bottomOffset: 52,
locationOffset: 25,
itleAsText: true
});
});
</script>
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
</body>
</html>