mirror of
https://github.com/DistSysCorp/ddia.git
synced 2024-12-25 20:30:39 +08:00
68 lines
2.8 KiB
HTML
68 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>DDIA 逐章精读</title>
|
||
<meta name="keywords" content="设计数据密集型应用 DDIA 数据库"/>
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||
<meta name="description" content="在理解英文原文的基础上,结合我的一些工作经验,进行一些相应扩展,并参考 github 上 Vonng 的中文翻译版,对每一章用中文重新组织,作为每次分享的文字稿,在此集结为一本开源小册,希望可以对有需要的同学有所帮助,水平所限,难免疏漏,如发现有任何有误之处,欢迎提 issue 和 PR。">
|
||
<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>
|
||
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 = {
|
||
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>',
|
||
'</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>
|
||
</body>
|
||
</html>
|