forked from fahimahammed/learn-postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 907 Bytes
/
index.html
File metadata and controls
32 lines (29 loc) · 907 Bytes
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
<!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="//cdn.jsdelivr.net/npm/docsify/themes/vue.css" />
<link rel="stylesheet" href="assets/custom.css" />
</head>
<body>
<!-- Docsify container -->
<div id="app"></div>
<!-- Docsify Core -->
<script src="//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="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
</body>
</html>