-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (93 loc) · 3.22 KB
/
index.html
File metadata and controls
99 lines (93 loc) · 3.22 KB
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
---
layout: default
---
<div class="container-fluid module-index">
<div class="row">
<div class="content col-sm-8">
<div class="posts">
{% for post in paginator.posts %}
<div class="post">
<time>
<p class="day">{{post.date | date: '%d'}}</p>
<p class="month">{{post.date | date: '%Y, %b'}}</p>
</time>
<article>
<header>
<h1 class="title">
<a target="_blank" href="{{post.url}}">{{ post.title }}</a>
</h1>
<span class="tags">
{% for tag in post.tags %}
<a class="tag" href="/tags.html#{{tag}}">{{tag}}</a>
{% endfor %}
</span>
</header>
<div class="md ">{{ post.excerpt }}</div>
<a class="more btn-hover pull-right" href="{{ post.url }}" target='_blank'> 继续阅读 </a>
</article>
</div>
{% endfor %}
</div>
{% if paginator.next_page %}
<a class="pager-next-url" href="{{ paginator.next_page_path }}"></a>
{% endif %}
{% include latex.html %}
</div>
<aside class="hidden-xs col-sm-3 col-sm-offset-1">
{% include author.html %}
<section class="follow">
<ul class="social-share social-share-sm">
<li class="social-share-item">
<a href="{{site.github}}" target="_blank" style="background: rgb(181, 181, 181);">
<i class="fas fa-code-branch" style="color: rgb(255, 255, 255);"></i>
</a>
</li>
<!--
<li class="social-share-item">
<a href="https://twitter.com/harttleharttle" target="_blank" style="background: rgb(51, 204, 255);">
<i class="fa fa-twitter" style="color: rgb(255, 255, 255);"></i>
</a>
</li>
<li class="social-share-item">
<a href="http://harttle.land/feed.xml" target="_blank" style="background: rgb(250, 155, 57);">
<i class="fa fa-rss" style="color: rgb(255, 255, 255);"></i>
</a>
</li>
-->
<li class="social-share-item">
<a href="mailto:teddzhaoo@gmail.com?subject=来自CodingTed" target="" style="background: rgb(84, 132, 214);">
<i class="fa fa-envelope" style="color: rgb(255, 255, 255);"></i>
</a>
</li>
</ul>
</section>
<!--
<section class="collection-list">
<h4>系列</h4>
<ul class="list-unstyled">
<li>
<a href="/git-workflow.html">
Git 工作流({{site.git-workflow.size}}篇)
</a>
</li>
<li>
<a href="/effective-cpp.html">
细读 Effective C++({{site.effective-cpp.size}}篇)
</a>
</li>
<li>
<a href="/vim-practice.html">
Vim 修行之路({{site.vim-practice.size}}篇)
</a>
</li>
</ul>
</section>
-->
<section class="tag-list">
<h4>标签</h4>
</section>
</aside>
</div>
<script defer src="/assets/lib/jquery-ias.min.js"></script>
<script defer src="/assets/js/index.js"></script>
</div>