This repository was archived by the owner on Jul 25, 2022. It is now read-only.
forked from Huxpro/huxpro.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
82 lines (68 loc) · 2.33 KB
/
Copy pathabout.html
File metadata and controls
82 lines (68 loc) · 2.33 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
---
layout: page
title: "About"
description: "Hey, this is Eric."
header-img: "img/post-bg-2015.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">
<blockquote>
世界那么大,多去看看。
</blockquote>
<p>硕士,就读于浙江大学软件学院,研一新生。热爱科技与编程。</p>
<p>博主已经数不清这是第几次开博客了,看着之前的博客,浓浓的幼稚气息扑面而来,就忍不住推到重来。每一段话,都记录了成长历程,与大家分享其中的苦与乐。
<p>在其他地方的窝:
<br>
SAE: http://blog.changhuiyuan.com
<br>
CSDN:http://blog.csdn.net/changhuiyuanh
</p>
<p>2015年7月8日于家中</p>
</div>
<!-- English Version -->
<div class="en">
<blockquote>
Designer or Engineer, things in between.
</blockquote>
</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>
{% if site.useDuoshuo %}
<!-- 多说评论框 start -->
<div class="comment">
<div class="ds-thread" data-thread-key="{{page.id}}" data-title="{{page.title}}" data-url="{{site.url}}/about/"></div>
</div>
<!-- 多说评论框 end -->
<!-- 多说公共JS代码 start (一个网页只需插入一次) -->
<script type="text/javascript">
var duoshuoQuery = {short_name:"huxblog"};
(function() {
var ds = document.createElement('script');
ds.type = 'text/javascript';ds.async = true;
ds.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//static.duoshuo.com/embed.js';
ds.charset = 'UTF-8';
(document.getElementsByTagName('head')[0]
|| document.getElementsByTagName('body')[0]).appendChild(ds);
})();
</script>
<!-- 多说公共JS代码 end -->
{% endif %}