-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (103 loc) · 3.53 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<title>Document</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link href="//cdn.bootcss.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link href="//cdn.bootcss.com/font-awesome/4.5.0/css/font-awesome.css" rel="stylesheet">
<link href="/abc.css" rel="stylesheet">
</head>
<body data-spy="scroll" data-target=".notes-sidebar">
<header>
<div class="notes-header">
<div class="container">
<div class="row">
<div class="col-md-9">
<h1>Mike-King’s Blog </h1>
</div>
<div class="col-md-3">
<a href="/">
<img alt="" src="http://placehold.it/150x120?text=INDEX">
</a>
</div>
</div>
</div>
</div>
</header>
<div class="wrap">
<div class="container notes-content">
<div class="row">
<article class="col-md-9">
<h2 id="sec-1">
<span class="heading-number heading-number-1">1</span> 学习总结</h2>
<ol>
<li><a href="build_blog/">使用 Nanoc 和 Orgmode 构建自己的博客系统</a></li>
<li><a href="spacemacs_refcard/">Spacemacs 常用快捷键</a></li>
<li><a href="mindmap_101/">微课学习:脑图 MindMap</a></li>
</ol>
<h2 id="sec-2">
<span class="heading-number heading-number-1">2</span> <span class="todo-keyword DONE">DONE</span> 读书笔记</h2>
<ul>
<li>State “DONE” from [2016-09-02 Fri 00:41]</li>
</ul>
<ol>
<li><a href="GTD/">GTD 搞定 读书笔记</a></li>
<li>STARTED <a href="effective_ruby/">改善 Ruby 程序的 48 条建议</a>
</li>
</ol>
<h2 id="sec-3">
<span class="heading-number heading-number-1">3</span> <span class="todo-keyword TODO">TODO</span> 等待上新的博文</h2>
<h3 id="sec-3-1">
<span class="heading-number heading-number-2">3.1</span> 读书笔记 [3/3]</h3>
<ul>
<li>[X] Effective Ruby</li>
<li>[X] Ruby 元编程</li>
<li>[X] GTD 读书</li>
</ul>
<h3 id="sec-3-2">
<span class="heading-number heading-number-2">3.2</span> 其他笔记 [2/4]</h3>
<ul>
<li>[X] Spacemacs shortcuts</li>
<li>[ ] Rails 5 in Nitrous.io</li>
<li>[ ] 程序员软技能</li>
<li>[X] MindMap 微课学习笔记</li>
</ul>
</article>
<aside class="col-md-3 sidebar-toc">
<nav class="notes-sidebar hidden-xs hidden-sm" id="notes-sidebar"><ul class="nav nav-stacked fixed">
<li><a href="#sec-1">
1 学习总结</a></li>
<li><a href="#sec-2">
2 DONE 读书笔记</a></li>
<li>
<a href="#sec-3">
3 TODO 等待上新的博文</a><ul class="nav nav-stacked">
<li><a href="#sec-3-1">
3.1 读书笔记 [3/3]</a></li>
<li><a href="#sec-3-2">
3.2 其他笔记 [2/4]</a></li>
</ul>
</li>
</ul></nav>
</aside>
</div>
</div>
</div>
<footer>
<div class="container">Contributes & License</div>
</footer>
<script src="//cdn.bootcss.com/jquery/2.2.1/jquery.min.js"></script>
<script src="//cdn.bootcss.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script type="text/javascript" charset="utf-8">
$('#notes-sidebar').affix({
offset: {
top: $('#notes-sidebar').offset().top,
bottom: ($('footer').outerHeight(true))
}
});
</script>
</body>
</html>