forked from xhrwang/xhrwang.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·119 lines (108 loc) · 3.5 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
---
layout: master
title: Home
description: Xiaohui Wang's Blog
---
<div class="container">
<header class="row">
<div class="col-sm-6 col-md-12" style="margin-top:25px;margin-bottom:25px">
<h1 id="pin">{{site.title}}</h1>
</div>
</header>
<nav>
<div class="row" style="margin-top:25px">
<div class="col-md-4 col-sm-6 col-xs-12">
<a href="about/">
<div class="tile purple profile bord">
<h2 class="title">About Me</h2>
<p>Hello World, I am {{site.author}}.</p>
</div>
</a>
</div>
<div class="col-md-2 col-sm-3 col-xs-6">
<a href="resume/" title="Resume" class="tile red bord icon-resume"></a>
</div>
<div class="col-md-2 col-sm-3 col-xs-6">
<div class="live-tile" data-mode="flip" data-delay="4000">
<div>
<a href="blog/" title="Blog" class="tile orange bord icon-blog"></a>
</div>
<div>
<a href="blog/" title="Blog" class="tile orange bord font-fix">
<p>Blog Section:</p>
<ol>
<li>Posts</li>
<li>News</li>
</ol>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div >
<div class="col-md-4 col-sm-6 col-xs-12">
{% for post in site.posts offset:1 limit:1 %}
<a href="{{post.url}}">
<div class="tile green bord">
<h3 class="title">Recent Article</h3>
<h4 class="title">{{ post.title }}</h4>
</div>
</a>
{% endfor %}
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
{% for post in site.posts limit:1 %}
<a href="{{post.url}}">
<div class="tile red bord">
<h3 class="title">Latest Article</h3>
<h4 class="title">{{ post.title }}</h4>
</div>
</a>
{% endfor %}
</div>
</div>
<div class="row" style="margin-bottom:25px">
<div data-delay="2000" data-mode="flip" class="live-tile flip ha fix-3">
<div class="col-md-2 col-sm-3 col-xs-6 flip-front ha" style="transform: rotateX(180deg); transition: all 500ms ease 0s;">
<a class="tile blue bord lk-ico" href="https://www.linkedin.com/pub/xiaohui-wang"></a>
</div>
<div class="col-md-2 col-sm-3 col-xs-6 flip-back ha" style="transform: rotateX(360deg); transition: all 500ms ease 0s;">
<a class="tile blue bord tw-ico" href="https://twitter.com/xhrwang"></a>
</div>
</div>
<div class="col-md-2 col-sm-3 col-xs-6">
<a href="{{site.twitter}}" class="tile blue bord tw-ico"></a>
</div>
<div class="col-md-2 col-sm-3 col-xs-6">
<a href="{{site.facebook}}" class="tile blue bord fk-ico"></a>
</div>
<div class="col-md-2 col-sm-3 col-xs-6">
<a href="feed.xml/" class="tile purple bord rs-ico"></a>
</div>
<div class="col-md-2 col-sm-3 col-xs-6">
<a href="{{site.gplus}}" class="tile orange bord gl-ico"></a>
</div>
<!-- Mini tile -->
<div class="col-md-2 col-sm-3 col-xs-6 rside">
<div class="row">
<div style="padding-left:0px" class="col-md-6 col-sm-6 col-xs-6">
<a href="{{site.linkedin}}" class="mtile blue bord lk-ico-sm"></a>
</div>
<div style="padding-left:0px" class="col-md-6 col-sm-6 col-xs-6">
<a href="{{site.twitter}}" class="mtile blue bord tw-ico-sm"></a>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-6 rep-1">
<a href="{{site.facebook}}" class="mtile purple bord fk-ico-sm"></a>
</div>
<div class="col-md-6 col-sm-6 col-xs-6 rep-2">
<a href="{{site.gplus}}" class="mtile orange bord gl-ico-sm"></a>
</div>
</div>
</div> <!-- End of Mini tile -->
</div>
</nav>
</div>