linux-tutorial/docs/index.html

63 lines
2.4 KiB
HTML
Raw Normal View History

2019-05-08 22:34:51 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>linux-tutorial</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
2019-05-10 18:35:33 +08:00
<meta name="description" content="Linux 教程" />
2019-05-08 22:34:51 +08:00
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css" title="vue" />
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/dark.css" title="dark" disabled />
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/buble.css" title="buble" disabled />
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/pure.css" title="pure" disabled />
<style>
nav.app-nav li ul {
min-width: 100px;
}
</style>
</head>
<body>
<div id="app">正在加载...</div>
<script>
window.$docsify = {
auto2top: true,
loadNavbar: "navbar.md",
name: "linux-tutorial",
repo: "https://github.com/dunwu/linux-tutorial",
maxLevel: 4,
subMaxLevel: 4,
formatUpdated: "{MM}/{DD} {HH}:{mm}",
pagination: {
previousText: "上一章节",
nextText: "下一章节",
crossChapter: true
2019-05-21 10:01:07 +08:00
},
2019-05-08 22:34:51 +08:00
// coverpage: true,
// 完整配置参数
2019-05-21 10:01:07 +08:00
// 完整配置参数
search: {
maxAge: 86400000, // 过期时间,单位毫秒,默认一天
paths: ["/", "linux/cli/", "linux/ops/", "linux/soft/", "git/"], // or 'auto'
placeholder: "搜索",
noData: "没有结果!",
// 搜索标题的最大程级, 1 - 6
depth: 4
}
2019-05-08 22:34:51 +08:00
};
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/emoji.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.js"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
2019-05-21 10:01:07 +08:00
<script src="//unpkg.com/docsify/lib/plugins/search.js"></script>
2019-05-08 22:34:51 +08:00
<!--代码高亮-->
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-markdown.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-nginx.min.js"></script>
</body>
</html>