diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | README | 1 | ||||
-rw-r--r-- | about.html | 2 | ||||
-rw-r--r-- | index.html | 5 | ||||
-rw-r--r-- | js/portfolio.js | 2 |
5 files changed, 7 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5f75873 --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1 @@ | |||
deploy.sh | |||
@@ -0,0 +1 @@ | |||
ring0.xyz | |||
@@ -16,7 +16,7 @@ | |||
16 | <meta name="theme-color" content="#2b303b"> | 16 | <meta name="theme-color" content="#2b303b"> |
17 | <meta name="viewport" content="width=device-width"> | 17 | <meta name="viewport" content="width=device-width"> |
18 | 18 | ||
19 | <link rel="icon" href="favicon.ico"> | 19 | <link rel="icon" type="image/x-icon" href="favicon.ico"> |
20 | <link rel="stylesheet" href="css/main.css"> | 20 | <link rel="stylesheet" href="css/main.css"> |
21 | <link rel="stylesheet" href="css/font.css"> | 21 | <link rel="stylesheet" href="css/font.css"> |
22 | 22 | ||
@@ -16,7 +16,7 @@ | |||
16 | <meta name="theme-color" content="#2b303b"> | 16 | <meta name="theme-color" content="#2b303b"> |
17 | <meta name="viewport" content="width=device-width"> | 17 | <meta name="viewport" content="width=device-width"> |
18 | 18 | ||
19 | <link rel="icon" href="favicon.ico"> | 19 | <link rel="icon" type="image/x-icon" href="favicon.ico"> |
20 | <link rel="stylesheet" href="css/main.css"> | 20 | <link rel="stylesheet" href="css/main.css"> |
21 | <link rel="stylesheet" href="css/font.css"> | 21 | <link rel="stylesheet" href="css/font.css"> |
22 | 22 | ||
@@ -35,7 +35,7 @@ | |||
35 | 35 | ||
36 | <div class="copyright"> | 36 | <div class="copyright"> |
37 | <pre> | 37 | <pre> |
38 | <span>Copyleft 2015 Powered by <a href="https://gitcafe.com/">GitCafe</a></span> | 38 | <span>Copyleft 2015 Powered by <a href="https://www.digitalocean.com/">DigitalOcean</a></span> |
39 | </pre> | 39 | </pre> |
40 | </div> | 40 | </div> |
41 | 41 | ||
@@ -45,6 +45,7 @@ | |||
45 | <p>My name is Jinwei Zhao. I am a computer science student at <strong>Hangzhou</strong>.</p> | 45 | <p>My name is Jinwei Zhao. I am a computer science student at <strong>Hangzhou</strong>.</p> |
46 | <p>Sometimes I write blog posts at <a href="http://blog.ring0.xyz" | 46 | <p>Sometimes I write blog posts at <a href="http://blog.ring0.xyz" |
47 | target="_blank">blog.ring0.xyz</a>.</p> | 47 | target="_blank">blog.ring0.xyz</a>.</p> |
48 | <p>Your connection is encrypted with <a href="https://letsencrypt.org/" target="_blank">Let's Encrypt</a>.</p> | ||
48 | <p>2048R/E9245 54E5C D20B9 C5514 1635D C1AB1 5CA01 E40F2</p> | 49 | <p>2048R/E9245 54E5C D20B9 C5514 1635D C1AB1 5CA01 E40F2</p> |
49 | <p><a href="http://pgp.mit.edu/pks/lookup?op=get&search=0xDC1AB15CA01E40F2" target="_blank">pgp.mit.edu</a></p> | 50 | <p><a href="http://pgp.mit.edu/pks/lookup?op=get&search=0xDC1AB15CA01E40F2" target="_blank">pgp.mit.edu</a></p> |
50 | <p>Read more at <a href="about.html">about</a>.</p> | 51 | <p>Read more at <a href="about.html">about</a>.</p> |
diff --git a/js/portfolio.js b/js/portfolio.js index 6feeeae..9e3f76f 100644 --- a/js/portfolio.js +++ b/js/portfolio.js | |||
@@ -3,7 +3,7 @@ var sleep = function(ms, callback) { | |||
3 | callback() | 3 | callback() |
4 | }, ms) | 4 | }, ms) |
5 | }, | 5 | }, |
6 | favthings = ["Python", "C programming", "raspberrypi", "Linux"], | 6 | favthings = ["raspberrypi", "Linux", "Let's Encrypt", "Ingress"], |
7 | removeClass = function(el, className) { | 7 | removeClass = function(el, className) { |
8 | el.classList ? el.classList.remove(className) : el.className = el.className.replace(new RegExp("(^|\\b)" + className.split(" ").join("|") + "(\\b|$)", "gi"), " ") | 8 | el.classList ? el.classList.remove(className) : el.className = el.className.replace(new RegExp("(^|\\b)" + className.split(" ").join("|") + "(\\b|$)", "gi"), " ") |
9 | }, | 9 | }, |