-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
94 lines (94 loc) · 2.79 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<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" />
<title>Rust OpenDocs</title>
<link rel="shortcut icon" href="assets/favicon.ico" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/4.6.2/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.11.2/font/bootstrap-icons.min.css"
/>
<link
rel="stylesheet"
type="text/css"
href="assets/main.css?t=211124172723"
/>
</head>
<body>
<div class="container">
<div class="row no-gutters justify-content-center mt-5">
<img
src="assets/opendocs.png?t=1562020202"
class="service-logo"
alt="OpenDocs"
/>
</div>
<div class="row no-gutters justify-content-center mt-5 dropbox">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Book Name</th>
<th scope="col">Frok</th>
<th scope="col">Build Kit</th>
<th scope="col">Build status</th>
<th scope="col">Create At</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<span class="loader"></span>
<span class="message"></span>
</div>
</div>
</body>
<div class="container">
<div class="row no-gutters justify-content-center mt-5 dropbox">
<div class="footer">
<p>
© 2020-2024 DadouLab.SIG ·
<a
href="https://github.com/containerpi/rsdocs-actions"
target="_blank"
>
<i class="bi bi-github" style="font-size: 16px"></i>
</a>
·
<a href="https://github.com/containerpi/rsdocs-actions/issues"
>Issues</a
>
</p>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script type="text/javascript">
$.ajax({
url: "_books.html",
context: document.body,
beforeSend: function () {
$(".loader").removeClass("d-none");
$(".message").hide();
},
success: function (response) {
$(".loader").addClass("d-none");
$(".table tbody").html(response);
},
error: function (err) {
$(".loader").addClass("d-none");
$(".message").show();
$(".message").html(
'<small class="text-muted"><i class="bi bi-quote"></i>Fetcher rust book list error.</small>'
);
},
});
</script>
</html>