-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathabout.html
104 lines (82 loc) · 2.64 KB
/
about.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
---
layout: default
title: About
permalink: /about/
---
<style>
#about-us-bg {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: -1;
}
#about-us-bg > img {
height: 100%;
width: 100%;
border: 0;
opacity: 0.45;
filter: alpha(opacity=45);
}
#about-warp {
/*background: red;*/
margin-top: 150px;
min-height: 600px;
}
ul {
list-style: none;
margin-bottom: 30px;
}
</style>
<div class="clearfix"></div>
<div id="about-us-bg">
<img src="/static/app/res/img/about_bg.jpeg"/>
</div>
<article>
<!--<div style="height: 200"></div>-->
<div class="container" id="about-warp">
<div class="row">
<div class="col-lg-10 col-lg-offset-1 col-md-10 col-md-offset-1 post-container">
<h2>Author</h2>
<ul>
<li>
<i class="fa fa-fw fa-pencil text-muted" title="Name"></i> 老马啸西风
</li>
<li>
<i class="fa fa-fw fa-birthday-cake text-muted" title="Birthday"></i> 1994-01-10
</li>
<li>
<i class="fa fa-fw fa-intersex text-muted" title="Sex"></i> Heimlichkeit
</li>
</ul>
<h2>Contact</h2>
<ul>
<li>
<span class="icon icon--github">{% include icon-github.svg %}</span>
<a class="my-a" href="https://github.com/houbb">binbin.Hou</a>
</li>
<li>
<i class="fa fa-fw fa-envelope text-muted" title="E-mail"></i> [email protected]
</li>
<li>
<i class="fa fa-fw fa-wechat text-muted" title="wechat"></i> 公众号:老马啸西风
</li>
</ul>
<h2>Address</h2>
<ul>
<li>
<i class="fa fa-fw fa-map-marker text-muted" title="Location"></i> Shanghai China
</li>
</ul>
<h2>Friendly Link</h2>
<ul>
<li>
<i class="fa fa-fw fa-external-link text-muted" title="Blog"></i>
<a class="my-a" href="https://kangyonggan.com/">康永敢的博客</a>
</li>
</ul>
</div>
</div>
</div>
</article>