-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (41 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Harker Bell Schedule Extension</title>
<link rel="icon" type="image/png" href="assets/icon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="View the Harker Bell Schedule the convinient way">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css">
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: "Development Mode",
repo: "https://github.com/gadhagod/bell-schedule-extension",
homepage: "docs/index.md",
executeScript: true,
plugins: [
function(hook) {
hook.afterEach(function(html) {
return html + "<hr><footer><center>By Aarav Borthakur</center></footer>";
});
}
]
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="https://unpkg.com/docsify-plugin-flexible-alerts"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
<script src="docs/bower_components/showdown/dist/showdown.min.js"></script>
<script src="../index.js"></script>
</body>
</html>