-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (44 loc) · 959 Bytes
/
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
---
layout: default
---
<style type="text/css">
.sidebar{
position:fixed;
top:80px;
left:20px;
}
body{
position: relative;
}
.nav>li>a {
position: relative;
display: block;
padding: 0px 15px;
}
</style>
<div class="home">
<div class="row">
<div id="nav-sidebar" class="col-md-2 sidebar">
<h1 class="page-heading">目录</h1>
<ul class="nav nav-pills nav-stacked">
{% for post in site.posts %}
<li class="nav-item">
<a href="#{{ post.id | remove_first:'/'}}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>
<div class="col-md-12">
<ul class="post-list">
{% for post in site.posts %}
<li>
<h2 id="{{ post.id | remove_first:'/'}}">{{ post.title }}</h2>
<article class="post-content">
{{ post.content }}
</article>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>