mirror of
https://github.com/DistSysCorp/ddia.git
synced 2024-12-25 20:30:39 +08:00
83 lines
3.2 KiB
HTML
83 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>DDIA 逐章精读</title>
|
||
<meta name="keywords" content="设计数据密集型应用 DDIA 数据库 DDIA笔记 DDIA翻译 DDIA精读 分布式系统 数据库 大规模数据系统"/>
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||
<meta name="description" content="DDIA读书笔记 DDIA精读笔记 DDIA翻译">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
||
<link rel="stylesheet" href="js/vue.css" title="vue"/>
|
||
<script src="https://unpkg.com/@waline/client@v2/dist/waline.js"></script>
|
||
<link rel="stylesheet" href="css/waline.css"/>
|
||
<script>
|
||
var _hmt = _hmt || [];
|
||
(function() {
|
||
var hm = document.createElement("script");
|
||
hm.src = "https://hm.baidu.com/hm.js?9e46dc21e48bb3056fcb775f11bddbc4";
|
||
var s = document.getElementsByTagName("script")[0];
|
||
s.parentNode.insertBefore(hm, s);
|
||
})();
|
||
</script>
|
||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-MMJ5PY11XY"></script>
|
||
<script>
|
||
window.dataLayer = window.dataLayer || [];
|
||
function gtag(){dataLayer.push(arguments);}
|
||
gtag('js', new Date());
|
||
gtag('config', 'G-MMJ5PY11XY');
|
||
</script>
|
||
|
||
</head>
|
||
<body>
|
||
<div id="app"></div>
|
||
<script>
|
||
window.$docsify = {
|
||
count: {
|
||
language: "chinese", // default:english|chinese
|
||
},
|
||
waline: {
|
||
serverURL: "https://ddia-comments.qtmuniao.com",
|
||
pageview: true,
|
||
requiredMeta: ['nick', 'mail'],
|
||
wordLimit: 1000,
|
||
imageUploader: false,
|
||
},
|
||
name: '《DDIA 逐章精读》',
|
||
repo: 'https://github.com/DistSysCorp/ddia',
|
||
loadSidebar: true,
|
||
subMaxLevel: 2,
|
||
themeColor: '#77AAC2',
|
||
auto2top: true,
|
||
pagination: {
|
||
previousText: "上一章",
|
||
nextText: "下一章",
|
||
crossChapter: true,
|
||
crossChapterText: true,
|
||
},
|
||
plugins: [
|
||
function pageFooter(hook, vm) {
|
||
var footer = [
|
||
'<footer style="text-align: center;">',
|
||
'<span><a href="https://www.qtmuniao.com/">作者:木鸟杂记</a> | </span>',
|
||
'<span><a href="https://mp.weixin.qq.com/mp/appmsgalbum?__biz=Mzg5NTcxNzY2OQ==&action=getalbum&album_id=2164896217070206977&scene=126&devicetype=iOS15.4&version=18001d33&lang=zh_CN&nettype=WIFI&ascene=59&session_us=gh_80636260f9f9&fontScale=106&wx_header=3">公众号</a> | </span>',
|
||
'<span><a href="https://distsys.cn/">分布式论坛</a> | </span>',
|
||
'<span><a href="https://xiaobot.net/p/system-thinking">系统技术专栏</a></span>',
|
||
'</footer>',
|
||
].join('');
|
||
|
||
hook.afterEach(function (html) {
|
||
return html + footer;
|
||
});
|
||
},
|
||
],
|
||
}
|
||
</script>
|
||
|
||
<script src="js/docsify.min.js"></script>
|
||
<script src="js/search.min.js"></script>
|
||
<script src="js/docsify-pagination.min.js"></script>
|
||
<script src="https://unpkg.com/docsify-waline@2/docsify-waline.min.js"></script>
|
||
</body>
|
||
</html>
|