-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (139 loc) · 5.51 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>IT知识小屋</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">
<meta name="keywords" content="Java后端开发,前端开发,大数据开发,数据结构,算法题,leetcode,开源,代码,计算机网络,操作系统,设计模式,编译原理,计算机组成原理,Spring,Spring Boot,Spring Cloud,Redis,MongoDB,Linux,JVM,IDEA,Docker,Git,SVN,MySQL,Tomcat,Nginx,Kubernetes,Elasticsearch,Kafka,程序员,分布式,微服务,大数据,开发者,编程,IT学习日记,面试真题,大厂,996">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/themes/vue.css">
<link rel="shortcut icon" href="/media/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<link rel="stylesheet" href="https://cdn.tobebetterjavaer.com/tobebetterjavaer/docsify/css/style.css">
<style type="text/css">
.footer{
/*background: #dfedec; aedbd7*/
background:#dfedec;
border-radius: 10px;
padding-top: 2px;
padding-bottom: 2px;
}
a{
text-decoration:none;
}
/* 全局超链接样式 */
.markdown-section a{
color: #009688;
}
/* 底部超联建样式 */
.footer-link a{
font-weight: normal;
color:inherit;
}
</style>
</head>
<body>
<!-- 导航栏
<nav>
<a href="#/">EN</a>
<a href="#/zh-cn/">中文</a>
</nav>-->
<div id="app"></div>
<script>
window.$docsify = {
name: '',
repo: 'https://github.com/it-learning-diary/it-learing-home',
loadSidebar: true,
// 自定义侧边栏后默认不会再生成目录,你也可以通过设置生成目录的最大层级开启这个功能,开启后会有多个层级目录,不建议
//subMaxLevel: 2,
auto2top: true,
// 启用封页面
coverpage: true,
// 自定义文件名
coverpage: '_coverpage.md',
// 侧边栏logo
logo: '/media/left-logo.jpg',
name: 'IT知识小屋',
// 添加页面标题(根据sidebar.md生成)
loadSidebar: true,
autoHeader: false,
// 只在访问主页时加载封面。
onlyCover: false,
// 搜索框
search: {
paths: 'auto',
placeholder: '找点什么...',
noData: '找不到结果',
depth: 3,
},
// 导航栏
loadNavbar: true,
// 点击文档标题后跳转
nameLink: '/',
// 小屏设备下合并导航栏到侧边栏。
mergeNavbar: true,
// 在找不到指定页面时加载_404.md
notFoundPage: true,
// 字数统计
count:{
countable:true,
fontsize:'0.9em',
color:'rgb(90,90,90)',
language:'chinese'
},
//themeColor: '#dfedec',
plugins: [
function (hook) {
var footer = [
'<div class="footer">',
'<div class="copy-text">',
'<p align="center"><font size="1" color="#4B4646">© <a style="color:inherit;font-weight:600;" href="http://42.194.186.190/index/">IT学习日记</a>. All Rights Reserved </font></p>',
'<p align="center">',
'<font size="1" color="#4B4646">作者简介:CSDN、头条、知乎、掘金等平台优质创作者,专注输出JAVA、数据库、算法等领域干货知识!</font>',
'</p>',
'</div>',
'<p align="center" class="footer-link">',
'<font size="1" color="#4B4646">',
'创作平台:',
'<a href="https://blog.csdn.net/qq_40891009">CSDN</a> | ',
'<a href="https://juejin.cn/user/686575843556008">掘金</a> | ',
'<a href="https://www.infoq.cn/profile/78FD85D91DD330/publish">InfoQ</a> | ',
'<a href="https://www.zhihu.com/people/qin-wei-liang-31">知乎</a> | ',
'<a href="https://github.com/it-learning-diary">GitHub</a> | ',
'<a href="https://gitee.com/it-learning-diary">Gitee</a> | ',
'<a href="https://space.bilibili.com/326895352">哔哩哔哩</a> | ',
'<a href="https://bbs.huaweicloud.com/community/usersnew/id_1640947018809587">华为云</a> | ' ,
'<a href="https://developer.aliyun.com/profile/expert/6m5lptsnn4cuk">阿里云</a> ',
'</font>',
'</p>',
'<font size="1" color="#4B4646">',
'</div>'
].join('');
hook.afterEach(function (html) {
var isReadme = window.location.href.indexOf("README");
if (isReadme === -1) {
// return header + html + footer;
return html + footer;
} else {
return html + footer;
}
});
}
],
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/emoji.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/zoom-image.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code/dist/docsify-copy-code.min.js"></script>
<script src="//unpkg.com/docsify-count/dist/countable.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<script src="https://unpkg.com/docsify-plugin-flexible-alerts"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-php.min.js"></script>
</body>
</html>