-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
78 lines (69 loc) · 2.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>App Dev I Notes W25</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<!-- Custom Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="./assets/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon_io/favicon-16x16.png">
<link rel="manifest" href="./assets/favicon_io/site.webmanifest">
<!-- <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"> -->
<!-- Theme: Simple -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
<!-- Enable the Prism syntax highlight theme: tomorrow night -->
<!-- Comment out to return to default theme -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/themes/prism-tomorrow.min.css">
<!-- ===== DYI Styling by Mau ===== -->
<style>
/* Always center images */
img {
margin: 3rem auto;
display: flex;
}
/* Custom class for inline images */
.inline-img {
display: inline;
margin: auto;
}
/* image descriptions */
.img-info {
display: flex;
justify-content: center;
margin-top: -2rem !important;
margin-bottom: 3rem !important;
font-style: italic;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: '420-4A8 Winter 2025',
repo: 'https://github.com/John-Abbott-College/4A8-Notes',
loadSidebar: true,
subMaxLevel: 3,
auto2top: true,
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<!-- docsify-themeable (latest v0.x.x) -->
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
<!-- Search bar -->
<script src="https://unpkg.com/docsify/lib/plugins/search.js"></script>
<!-- Copy to clipboard button on code blocks -->
<script src="//unpkg.com/docsify-copy-code"></script>
<!-- docsify-pagination -->
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<!-- enable prism syntax highlighting for bash -->
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
<!-- enable prism syntax highlighting for python -->
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-python.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/[email protected]/components/prism-json.min.js"></script>
</body>
</html>