-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathabout.html
113 lines (104 loc) · 4.13 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
101
102
103
104
105
106
107
108
109
110
111
112
113
---
layout: page
title: "About"
nav: true
description: "Hey, this is Fe."
header-img: "img/post-bg-rwd.jpg"
head_padding: "55px"
---
<!-- by Fe 按钮-->
<h3 name="en" hidden><a class="label label-default" onclick="onLanChange('0')">中文 Chinese </a></h3>
<h3 name="zh"><a class="label label-default" onclick="onLanChange('1')">英文 English </a></h3>
<div class="zh post-container" name="zh">
<!--copied from markdown -->
<blockquote>
<p>冰冻三尺 非一日之寒
<br/>积土成山 非斯须之作</p>
</blockquote>
<p>Hey,我是<strong>Fe</strong>,一只JAVA程序猿,现在福州工作。</p>
<p>这是我的利用 <a href="https://pages.github.com/">GitHub Pages</a> 与 <a href="http://jekyll.com.cn/">Jekyll</a> 搭建的个人博客。我的GitHub 👉 <a href="http://github.com/FeDemo">Github·Fe。</a></p>
<p>爱生活,爱编程,爱JAVA,也爱BUG。</p>
</div>
<!-- English Version -->
<div class="en post-container" name="en" hidden>
<blockquote>
<p>Yet another JAVA Developer.
<br>Yet another Life-long Student.</p>
</blockquote>
<p>Hi, I am <strong>Fe</strong>. An JAVA Program the ape and currently working in FuZhou</p>
<p>This is my personal blog, through making <a href="https://pages.github.com/">GitHub Pages</a> and <a href="http://jekyll.com.cn/">Jekyll</a>. My GitHub 👉 <a href="http://github.com/FeDemo">Github·Fe</a>.</p>
<p>Love life,Love programming,Love JAVA, Love BUG </p>
</div>
<!-- 小恐龙 -->
<div class="visible-md visible-lg">
<iframe src="{{ "/plugins/chrome-t-rex-game-master" | prepend: site.baseurl }}" width="100%" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"> </iframe>
</div>
<!-- <div class="post-container"> -->
<!-- <iframe src="{{ "/plugins/chrome-t-rex-game-master" | prepend: site.baseurl }}" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"> </iframe> -->
<!-- 仓鼠start -->
<!-- <div class="visible-md visible-lg">
<style>
ul, menu, dir {
display: block;
list-style-type: disc;
-webkit-margin-before: 1em;
-webkit-margin-after: 1em;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
-webkit-padding-start: 40px;
}
</style>
<object type="application/x-shockwave-flash"
style="outline:none;"
data="https://cdn.abowman.com/widgets/hamster/hamster.swf?"
width="240" height="180"
id="__wow_video_player__463292481"
title="Adobe Flash Player">
<param name="movie" value="https://cdn.abowman.com/widgets/hamster/hamster.swf?">
<param name="AllowScriptAccess" value="always">
<param name="wmode" value="opaque">
</object>
</div> -->
<!-- 仓鼠end -->
<!-- <h5>Talks</h5>
<ul>
<li><a href="https://github.com" target="_blank">github</a></li>
<li><a href="http://jekyll.com.cn/" target="_blank">jekyll</a></li>
<li><a href="https://pages.github.com/" target="_blank">GitHub Pages</a></li>
<li><a href="https://fedemo.github.io/" target="_blank">Fe</a></li>
<li><a href="https://tongji.baidu.com/web/24776843/overview/index?siteId=11534941" target="_blank">百度统计</a></li>
<li><a href="https://console.bce.baidu.com/bcd/#/bcd/manage/list" target="_blank">域名管理</a></li>
</ul>
</div> -->
<!--Gitalk评论start by Fe-->
<!-- 引入Gitalk评论插件 -->
{% if site.gitalk.enable %}
<link rel="stylesheet" href="https://unpkg.com/gitalk/dist/gitalk.css">
<script src="https://unpkg.com/gitalk@latest/dist/gitalk.min.js"></script>
<div id="gitalk-container"></div>
<script type="text/javascript">
var gitalk = new Gitalk({
clientID: '{{site.gitalk.clientID}}',
clientSecret: '{{site.gitalk.clientSecret}}',
repo: '{{site.gitalk.repo}}',
owner: '{{site.gitalk.owner}}',
admin: ['{{site.gitalk.admin}}'],
id: window.location.pathname,
});
gitalk.render('gitalk-container');
</script>
{% endif %}
<!-- Gitalk end -->
<!-- Handle Language Change -->
<script type="text/javascript">
// handle select change
function onLanChange(index){
if(index == 1){
$("[name='zh']").hide();
$("[name='en']").show();
}else{
$("[name='en']").hide()
$("[name='zh']").show();
}
}
</script>