forked from Huxpro/huxblog-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
95 lines (84 loc) · 3.61 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
---
layout: page
title: "About"
description: "你对我很好奇呢"
header-img: "img/about-bg.jpg"
---
<!-- Language Selector -->
<select onchange= "onLanChange(this.options[this.options.selectedIndex].value)">
<option value="0" selected> 中文 Chinese </option>
<option value="1"> 英语 English </option>
</select>
<!-- Chinese Version -->
<div class="zh post-container">
<blockquote>
幸运之神的降临,往往只是因为你多看了一眼,多想了一下,多走了一步
</blockquote>
你好,我是 MilkBeer,毕业于北京邮电大学<br>
<br>乐于沉浸式敲代码,主大数据研发,副数据挖掘,副副机器学习<br>
<br>健身多年,喜欢街舞,喜欢拳击<br>
<br>有可爱小女友一枚,闲时喜欢带她逛吃逛吃<br>
<br>持续性奋发向上,间歇性混吃等死<br>
<br>也常出没于
<a href="http://weibo.com/2990037837" target="_blank">微博</a>、
<a href="https://www.zhihu.com/people/{{ site.zhihu_username }}" target="_blank">知乎</a>、
<a href="http://www.jianshu.com/u/3436fbbd1afc" target="_blank">简书</a>,
如果你愿意可以关注一下<br>
<br>博文第一时间是在本博客更新,同步至<a href="https://juejin.im/user/57d56ce6816dfa0054492f4a" target="_blank">掘金</a>、简书<br>
<h3>联系方式:</h3>
- Emial: [email protected]
<p> 欢迎互加友链</p>
</div>
<!-- English Version -->
<div class="en post-container">
<blockquote>
The coming of the lucky god is often just because you have a more glance, think more about it, take one more step.
</blockquote>
Hey man,my name is Peng Tuo,MilkBeer,graduated from BUPT<br>
<br>Willing to immerse coding, master at big data development, what's more study on data mining and machine learning<br>
<br>Fitness for many years, like hip-hop, like boxing<br>
<br>Having a cute girlfriend, and liking to stay with her while I'm free from work.<br>
<br>always appear in
<a href="http://weibo.com/2990037837" target="_blank">weibo</a>、
<a href="https://www.zhihu.com/people/{{ site.zhihu_username }}" target="_blank">zhihu</a>、
<a href="http://www.jianshu.com/u/3436fbbd1afc" target="_blank">jianshu</a>,
It's my pleasure if you would like to follow me.<br>
<br>The first time of the blog post is updated in this blog, synchronized to the <a href="https://juejin.im/user/57d56ce6816dfa0054492f4a" target="_blank">juejin</a>, jianshu<br>
<br><br>
<br>
</div>
<!-- Handle Language Change -->
<script type="text/javascript">
var $zh = document.querySelector(".zh");
var $en = document.querySelector(".en");
function onLanChange(index){
if(index == 0){
$zh.style.display = "block";
$en.style.display = "none";
}else{
$en.style.display = "block";
$zh.style.display = "none";
}
}
onLanChange(0);
</script>
<!-- 添加 gitalk 评论系统 -->
<script src="/js/md5.min.js"></script>
{% if site.gitalk.enable %}
<section class="post-footer-item comment">
<div id="disqus_thread"></div>
<div id="gitalk_container"></div>
</section>
<script>
var gitalk = new Gitalk({
clientID: '{{site.gitalk.ClientID}}',
clientSecret: '{{site.gitalk.ClientSecret}}',
repo: '{{site.gitalk.repo}}',
owner: '{{site.gitalk.githubID}}',
admin: '{{site.gitalk.adminUser}}',
id: md5(location.pathname),
distractionFreeMode: '{{site.gitalk.distractionFreeMode}}'
})
gitalk.render('gitalk_container')
</script>
{% endif %}