|
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html> |
3 | | -<head> |
4 | | - <meta charset="utf-8"> |
5 | | - <meta name="viewport" content="width=device-width,initial-scale=1"> |
6 | | - <title>Learn PostgreSQL</title> |
7 | | - <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/themes/vue.css" /> |
8 | | - <link rel="stylesheet" href="assets/custom.css" /> |
9 | | -</head> |
10 | | -<body> |
11 | | - <!-- Docsify container --> |
12 | | - <div id="app"></div> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8" /> |
| 5 | + <meta name="viewport" content="width=device-width,initial-scale=1" /> |
| 6 | + <title>Learn PostgreSQL</title> |
| 7 | + <link |
| 8 | + rel="stylesheet" |
| 9 | + href="https://cdn.jsdelivr.net/npm/docsify/themes/vue.css" |
| 10 | + /> |
| 11 | + <link rel="stylesheet" href="assets/custom.css" /> |
| 12 | + </head> |
| 13 | + <body> |
| 14 | + <!-- Docsify container --> |
| 15 | + <div id="app"></div> |
13 | 16 |
|
14 | | - <!-- Docsify Core --> |
15 | | - <script src="//cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js"></script> |
| 17 | + <!-- Back to Top Button --> |
| 18 | + <button id="back-to-top" class="back-to-top" type="button">↑</button> |
16 | 19 |
|
17 | | - <!-- Docsify Configuration --> |
18 | | - <script> |
19 | | - window.$docsify = { |
20 | | - name: 'Learn PostgreSQL', |
21 | | - repo: 'fahimahammed/learn-postgresql', |
22 | | - loadSidebar: '_sidebar.md', // Ensure _sidebar.md exists in the repo root |
23 | | - subMaxLevel: 2, |
24 | | - search: 'auto', |
25 | | - themeColor: '#3F51B5' |
26 | | - } |
27 | | - </script> |
| 20 | + <!-- Docsify Core --> |
| 21 | + <script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js"></script> |
28 | 22 |
|
29 | | - <!-- Docsify Plugins --> |
30 | | - <script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script> |
31 | | -</body> |
| 23 | + <!-- Docsify Configuration --> |
| 24 | + <script> |
| 25 | + window.$docsify = { |
| 26 | + name: "Learn PostgreSQL", |
| 27 | + repo: "fahimahammed/learn-postgresql", |
| 28 | + loadSidebar: "_sidebar.md", // Ensure _sidebar.md exists in the repo root |
| 29 | + subMaxLevel: 2, |
| 30 | + search: "auto", |
| 31 | + themeColor: "#3F51B5", |
| 32 | + }; |
| 33 | + </script> |
| 34 | + |
| 35 | + <!-- Docsify Plugins --> |
| 36 | + <script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script> |
| 37 | + <!-- Back to Top Script --> |
| 38 | + <script src="assets/back-to-top.js"></script> |
| 39 | + </body> |
32 | 40 | </html> |
0 commit comments