1+ <!doctype html>
2+ < html lang ="en ">
3+
4+ < head >
5+ < meta charset ="utf-8 ">
6+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
7+ < meta name ="viewport " content ="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no, viewport-fit=cover ">
8+ < meta name ="description " content ="A delightfully simple theme system for docsify.js. Features multiple themes with rich customization options, an improved desktop and mobile experience, and legacy browser support (IE10+). ">
9+ < meta name ="google-site-verification " content ="_EWJaM8G6xwMtEqemO4yN8WqSU2CaKVi3jTj0gLg48E ">
10+ < title > fullstack tutorial - 全栈开发指南</ title >
11+
12+ <!-- Stylesheets -->
13+ < link rel ="stylesheet " href ="https://unpkg.com/docsify-themeable/dist/css/theme-simple.css " title ="Simple ">
14+ < link rel ="stylesheet " href ="docsify/css/main.css ">
15+
16+ <!-- Alternate Stylesheets -->
17+ < link rel ="stylesheet alternate " href ="https://unpkg.com/docsify-themeable/dist/css/theme-defaults.css " title ="Defaults ">
18+ < link rel ="stylesheet alternate " href ="https://unpkg.com/docsify-themeable/dist/css/theme-simple-dark.css " title ="Simple Dark ">
19+
20+ <!-- Test Stylesheets -->
21+ <!-- <link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css"> -->
22+ <!-- <link rel="stylesheet" href="//unpkg.com/docsify/themes/buble.css"> -->
23+ <!-- <link rel="stylesheet" href="//unpkg.com/docsify/themes/dark.css"> -->
24+ <!-- <link rel="stylesheet" href="//unpkg.com/docsify/themes/pure.css"> -->
25+ < style >
26+ .sidebar-nav a ,
27+ .sidebar nav a {
28+ white-space : unset !important ;
29+ }
30+
31+ .sidebar-nav ul li ul {
32+ font-size : 14px ;
33+ }
34+
35+ .sidebar-nav ul li strong {
36+ font-size : 17px ;
37+ }
38+
39+ h1 # fullstack-tutorial span {
40+ color : hsl (204 , 90% , 45% );
41+ }
42+
43+ article # main a {
44+ color : hsl (204 , 90% , 45% );
45+ }
46+ /* 隐藏 Github TOC 目录 */
47+ .markdown-section : first-child li {
48+ display : none;
49+ }
50+ </ style >
51+ </ head >
52+
53+ < body >
54+ < div id ="app "> </ div >
55+
56+ <!-- JavaScript -->
57+ < script >
58+ window . $docsify = {
59+ loadNavbar : true ,
60+ loadNavbar : 'docsify/navbar.md' ,
61+ // basePath: '/docs/notes',
62+ // GENERAL
63+ // -----------------------------------------------------------------
64+ name : 'fullstack tutorial' ,
65+ repo : 'https://github.com/frank-lam/fullstack-tutorial' ,
66+ coverpage : 'docsify/coverpage.md' ,
67+ homepage : 'introduction.md' ,
68+ loadSidebar : 'docsify/sidebar.md' ,
69+
70+ // NAVIGATION
71+ // -----------------------------------------------------------------
72+ alias : {
73+ '.*?/changelog' : 'https://unpkg.com/docsify-themeable/CHANGELOG.md' ,
74+ } ,
75+ auto2top : true ,
76+ maxLevel : 3 ,
77+ subMaxLevel : 2 ,
78+
79+ // PLUGINS
80+ // -----------------------------------------------------------------
81+ executeScript : true ,
82+ ga : 'UA-100100910-3' ,
83+ search : {
84+ depth : 3 ,
85+ noData : 'No results!' ,
86+ placeholder : 'Search...'
87+ }
88+ } ;
89+ </ script >
90+
91+ < script src ="docsify/js/main.js "> </ script >
92+ < script src ="//unpkg.com/docsify/lib/plugins/emoji.js "> </ script >
93+ < script src ="https://unpkg.com/docsify "> </ script >
94+ < script src ="https://unpkg.com/docsify-themeable "> </ script >
95+ < script src ="https://unpkg.com/docsify-tabs "> </ script >
96+ < script src ="https://unpkg.com/docsify-copy-code "> </ script >
97+ < script src ="https://unpkg.com/docsify-pagination/dist/docsify-pagination.min.js "> </ script >
98+ < script src ="https://unpkg.com/docsify/lib/plugins/external-script.min.js "> </ script >
99+ < script src ="https://unpkg.com/docsify/lib/plugins/ga.min.js "> </ script >
100+ < script src ="https://unpkg.com/docsify/lib/plugins/search.js "> </ script >
101+ < script src ="https://unpkg.com/docsify/lib/plugins/zoom-image.min.js "> </ script >
102+ < script src ="https://unpkg.com/prismjs/components/prism-bash.min.js "> </ script >
103+
104+ < link rel ="stylesheet " href ="//unpkg.com/gitalk/dist/gitalk.css ">
105+
106+ < script src ="//unpkg.com/docsify/lib/plugins/gitalk.min.js "> </ script >
107+ < script src ="//unpkg.com/gitalk/dist/gitalk.min.js "> </ script >
108+ < script >
109+ const gitalk = new Gitalk ( {
110+ clientID : '67ba8c5b2ac4f27e47e1' ,
111+ clientSecret : 'bea349f1e21ab64348ddb365901b3f6daf9f0697' ,
112+ repo : 'fullstack-tutorial-gitalk' ,
113+ owner : 'frank-lam' ,
114+ admin : [ 'frank-lam' ] ,
115+ id : location . pathname ,
116+ // distractionFreeMode: false
117+ } )
118+ </ script >
119+
120+ </ body >
121+ </ html >
0 commit comments