-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
57 lines (48 loc) · 1.72 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
---
layout: page_with_comments
title: "About"
description: "Hey, this is Echo."
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>
Hey, 我是韩啸 (Echo)。我是一名运维工程师。
</div>
<!-- English Version -->
<div class="en post-container">
<blockquote>
Designer or Engineer, things in between.
</blockquote>
<p>
Your work is going to fill a large part of your life, and the only way to be truly satisfied is to do what you believe is great work. And the only way to do great work is to love what you do. If you haven’t found it yet, keep looking. Don’t settle. As with all matters of the heart, you’ll know when you find it.
</p>
<p>
If you want to live your life in a creative way, as an artist, you have to not look back too much. You have to be willing to take whatever you’ve done and whoever you were and throw them away.
</p>
<p style="text-align:right;">
-- Steve Jobs
</p>
</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>