-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
132 lines (127 loc) · 5.6 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
---
title: 卢珏玟的博客
---
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta http-equiv="Content-Type" content="text/html">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script>
<script src="http://cdn.bootcss.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/../css/style.css">
<link type="image/x-icon" rel="shortcut icon" href="/im/ljm.ico" />
<title>{{ page.title }}</title>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?791b6e28c2e0619db9f66c55d31f40b2";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body>
<header class="header">
<div class="container">
<a href="http://www.juemin.win">卢珏玟 | Lu Juemin</a>
<span><a href="http://www.juemin.win/cv">简历</a></span>
</div>
</header>
<section class="innerContent">
<div class="panel_blog">
<div class="container">
<div class="col-md-8 content">
{% for post in paginator.posts %}
<div class="holder blog-list">
<div class="header">
<a href="{{ site.baseurl }}{{post.url}}">
<h1>{{ post.title }}</h1>
</a>
<span class="post-label">{{ post.theme }}</span>
<hr>
<p>Posted by <small>卢珏玟</small> on <small>{{ post.date | date_to_string }}</small></p>
</div>
<div class="content">
{% if post.content contains "<!-- more -->" %}
{{ post.content | split:"<!-- more -->" | first % }}
{% else %}
{{ post.excerpt }}
{% endif %}
</div>
<div class="footer">
<hr>
<div class="read-more">
<a href="">continue reading</a>
</div>
<div class="social-widget-holder">
<a href="" title="Comment on Keep learning">Leave a comment</a>
</div>
<div class="clearfix"></div>
</div>
</div>
{% endfor %}
<nav>
<ul class="pager">
{% if paginator.previous_page %}
<li><a href="{{ paginator.previous_page_path }}">Previous</a></li>
{% endif %}
<span class="page_number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<li><a href="{{ paginator.next_page_path }}">Next</a></li>
{% endif %}
</ul>
</nav>
</div>
<div class="col-md-4 col-sm-5 aside">
<article class="about-me aside-holder">
<h2>about me</h2>
<div class="photo-holder">
<a href="javascript:void(0);" class="my_photo"><img src="../im/juemin.jpg" alt="lujuemin" class="img-thumbnail"></a>
</div>
<p>I'm Lu Juemin, a front-end developer in Momoso.</p>
<p>
<a class="social github" href="https://github.com/juemin90" target="_blank"></a>
<a class="social weibo" href="http://weibo.com/juemin" target="_blank"></a>
<a class="social facebook" href="https://facebook.com/huamanzhiya" target="_blank"></a>
<a class="social twitter" href="https://twitter.com/juemin90" target="_blank"></a>
<a class="social stackoverflow" href="https://www.stackoverflow.com" target="_blank"></a>
<a class="social linkedin" href="http://linkedin.com/juemin90" target="_blank"></a>
<a class="clearfix"></a>
</p>
</article>
<article class="recent-posts aside-holder"><h2>recent posts</h2>
<hr>
{% for post in site.posts limit: 5 %}
<a href="{{ site.baseurl }}{{post.url}}">{{ post.title }}</a>
<hr>
{% endfor %}
<p>Totally {{paginator.total_posts}} blogs</p>
</article>
<article class="recent-replies aside-holder"><h2>recent replies</h2>
<hr>
<p>暂时没有回复</p>
</article>
</div>
</div>
</div>
</section>
<footer>
<a href=".">卢珏玟的个人网站</a>©2015
</footer>
<script src="js/app.js"></script>
<script src="/../js/app.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-68765388-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>