-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 1.17 KB
/
index.html
File metadata and controls
40 lines (36 loc) · 1.17 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Learn PostgreSQL</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/docsify/themes/vue.css"
/>
<link rel="stylesheet" href="assets/custom.css" />
</head>
<body>
<!-- Docsify container -->
<div id="app"></div>
<!-- Back to Top Button -->
<button id="back-to-top" class="back-to-top" type="button">↑</button>
<!-- Docsify Core -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js"></script>
<!-- Docsify Configuration -->
<script>
window.$docsify = {
name: "Learn PostgreSQL",
repo: "fahimahammed/learn-postgresql",
loadSidebar: "_sidebar.md", // Ensure _sidebar.md exists in the repo root
subMaxLevel: 2,
search: "auto",
themeColor: "#3F51B5",
};
</script>
<!-- Docsify Plugins -->
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<!-- Back to Top Script -->
<script src="assets/back-to-top.js"></script>
</body>
</html>