-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (73 loc) · 3.45 KB
/
Copy pathindex.html
File metadata and controls
88 lines (73 loc) · 3.45 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
---
layout: default
sitemap:
changefreq: 'weekly'
---
<div class="container main-body">
<div class="row main-row">
<div class="col-xs-12 col-sm-7">
<div clsss="row post-list">
{% for post in paginator.posts %}
<div class="post-item">
<a class="h1" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<div class="post-time">
<span class="glyphicon glyphicon-time"></span>
{{ post.date | date: "%b %-d, %Y" }}
</div>
<p class="lead">{{ post.description }}</p>
</div>
{% endfor %}
</div>
<div class="row paginator">
<div class="col-xs-6 col-sm-6 text-left">
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href="/" class="btn btn-primary btn-lg" role="button" ><span class="glyphicon glyphicon-arrow-left"> NEW <span class="glyphicon glyphicon-arrow-left"></a>
{% else %}
<a href="{{ paginator.previous_page_path }}" class="btn btn-primary btn-lg" role="button"><span class="glyphicon glyphicon-arrow-left"> NEW <span class="glyphicon glyphicon-arrow-left"></a>
{% endif %}
{% endif %}
</div>
<div class="col-xs-6 col-sm-6 text-right">
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="btn btn-primary btn-lg" role="button"><span class="glyphicon glyphicon-arrow-right"></span> OLD <span class="glyphicon glyphicon-arrow-right"></span></a>
{% endif %}
</div>
</div>
</div>
<!-- <div class="col-xs-12 col-sm-1"></div> -->
<div class="col-xs-12 col-sm-5 side-info">
<div class="row">
<div class="col-xs-12">
<img src="https://avatars1.githubusercontent.com/u/4397009?s=400&u=e80e813e628413394f9c6c416faf460eac1119cc&v=4" class="img-thumbnail photo" alt="ChrisCheng">
</div>
</div>
<div class="row">
<div class="col-xs-12">
<h2>程澈</h2>
<h4>一个新鲜的游戏开发攻城狮</h4>
<h4>一个Web技术的爱好者</h4>
<h4>最近被Ukulele吸引,准备进入混乱的艺术世界</h4>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="rotate_plane">
<img src="{{ "/img/plane.svg" | prepend: site.baseurl }}" class="decorate-tex">
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'icodeten'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>