Skip to content

Commit

Permalink
Home page redesign
Browse files Browse the repository at this point in the history
  • Loading branch information
jkao committed May 25, 2013
1 parent 9661fdf commit b6b9d28
Show file tree
Hide file tree
Showing 113 changed files with 620 additions and 33 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added archive/favicon.ico
Binary file not shown.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
33 changes: 33 additions & 0 deletions archive/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
layout: default
---
<span class="title">My Rants</span>
<ul class="posts rants">
{% for post in site.categories.rants %}
<li>
<img src="{{ post.image }}" />
<div class="post-content">
<span class="date">{{ post.date | date_to_string }}</span>
<a class="title" href="{{ post.url }}">{{post.title}}</a>
<p class="excerpt">{{ post.description }}</p>
</div>
</li>
{% endfor %}
</ul>
<span class="title">Projects</span>
<ul class="posts projects">
{% for post in site.categories.projects %}
<li>
<img src="{{ post.image }}" />
<div class="post-content">
<span class="date">{{ post.date | date_to_string }}</span>
{% if post.link %}
<a class="title" href="{{ post.link }}">{{post.title}}</a>
{% else %}
<a class="title" href="{{ post.url }}">{{post.title}}</a>
{% endif %}
<p class="excerpt">{{ post.description }}</p>
</div>
</li>
{% endfor %}
</ul>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
427 changes: 427 additions & 0 deletions archive/resume.html

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
71 changes: 71 additions & 0 deletions assets/css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/*
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 2.9.0
*/
body{margin:10px}h1{font-size:138.5%}h2{font-size:123.1%}h3{font-size:108%}h1,h2,h3{margin:1em 0}h1,h2,h3,h4,h5,h6,strong,dt{font-weight:bold}optgroup{font-weight:normal}abbr,acronym{border-bottom:1px dotted #000;cursor:help}em{font-style:italic}del{text-decoration:line-through}blockquote,ul,ol,dl{margin:1em}ol,ul,dl{margin-left:2em}ol{list-style:decimal outside}ul{list-style:disc outside}dl dd{margin-left:1em}th,td{border:1px solid #000;padding:.5em}th{font-weight:bold;text-align:center}caption{margin-bottom:.5em;text-align:center}sup{vertical-align:super}sub{vertical-align:sub}p,fieldset,table,pre{margin-bottom:1em}button,input[type="checkbox"],input[type="radio"],input[type="reset"],input[type="submit"]{padding:1px}img{-ms-interpolation-mode:bicubic}

/*
* Fun starts here.
*/
#about {
background-color: rgba(0, 0, 0, 0.8);
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
display: block;
font-size: 11px;
color: #fff;
height: 599px;
padding-bottom: 30px;
padding-left: 30px;
padding-right: 30px;
padding-top: 10px;
position: absolute;
right: 30px;
top: 30px;
width: 420px;
word-wrap: break-word;
}

#about h1 {
font-family: 'Oswald', sans-serif;
font-size: 48px;
margin: 12px 0;
}

#about p {
font-family: 'Lato', sans-serif;
font-size: 19px;
margin: 25px 0 10px;
word-spacing: 3px;
}

#about a {
color: rgb(0, 157, 255);
font-style: bold;
text-decoration: none;
}

#about ul {
font-family: 'Lato', sans-serif;
font-size: 19px;
list-style-type: none;
margin: 0;
padding: 0 0 0 15px;
word-spacing: 5px;
}

.talk li {
display: inline;
padding-right: 8px;
}

#about ul.links {
padding-bottom: 5px;
}
#about ul.links li {
display: inline;
}
122 changes: 89 additions & 33 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,33 +1,89 @@
---
layout: default
---
<span class="title">My Rants</span>
<ul class="posts rants">
{% for post in site.categories.rants %}
<li>
<img src="{{ post.image }}" />
<div class="post-content">
<span class="date">{{ post.date | date_to_string }}</span>
<a class="title" href="{{ post.url }}">{{post.title}}</a>
<p class="excerpt">{{ post.description }}</p>
</div>
</li>
{% endfor %}
</ul>
<span class="title">Projects</span>
<ul class="posts projects">
{% for post in site.categories.projects %}
<li>
<img src="{{ post.image }}" />
<div class="post-content">
<span class="date">{{ post.date | date_to_string }}</span>
{% if post.link %}
<a class="title" href="{{ post.link }}">{{post.title}}</a>
{% else %}
<a class="title" href="{{ post.url }}">{{post.title}}</a>
{% endif %}
<p class="excerpt">{{ post.description }}</p>
</div>
</li>
{% endfor %}
</ul>
<!DOCTYPE html>
<html>
<head>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="Hi, I'm Jeff Kao. Welcome to my World.">
<meta name="viewport" content="width=device-width">

<!-- Title -->
<title>Hi, I'm Jeff Kao.</title>

<!-- CSS -->
<link rel="stylesheet" href="assets/css/styles.css" />
<link href='http://fonts.googleapis.com/css?family=Lato:100|Oswald' rel='stylesheet' type='text/css'>
</head>
<body>
<!-- Woohoo! -->
<div id="about">
<h1>HI, I'M JEFF KAO.</h1>

<p>
I'm a tech enthusiast and wannabe startup entrepreneur.
I'm pretty set on taking out the "wannabe" part in the near future.
</p>

<p>
For now, I'm working
<a href="http://foursquare.com" target="_blank">@foursquare</a>
in New York and finishing up my
<a href="http://ece.uwaterloo.ca" target="_blank">degree</a>.
A masters may not be too farfetched.
</p>

<p>
Talk to me about:
</p>
<ul class="talk">
<li>#startups</li>
<li>#software</li>
<li>#vim</li>
<li>#guitar</li>
<li>#metal</li>
<li>#jazz</li>
<li>#languages</li>
<li>#travel</li>
<li>#kickingass</li>
</ul>

<p>
Interesting ( ? ) Links:
</p>

<ul class="links">
<li>
<a href="http://jeff-kao.com/resume.html" target="_blank">resume</a>
</li>
</ul>
<ul class="links">
<li>
<a href="https://twitter.com/j_ckao" target="_blank">twitter</a>
</li>
<li>
<a href="https://github.com/jkao" target="_blank">github</a>
</li>
<li>
<a href="http://www.linkedin.com/profile/view?id=65997901" target="_blank">linkedin</a>
</li>
</ul>
</div>

<!-- JavaScript depedencies -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-backstretch/2.0.3/jquery.backstretch.min.js"></script>
<script>
// Google Analytics
var _gaq=[['_setAccount','UA-27939779-1'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src='//www.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));

// Background Image
var bgUrl =
"https://dl.dropboxusercontent.com/u/25048900" +
"/jkao.github.com/twinpeaks_mini.jpg";
$.backstretch(bgUrl);
</script>
</body>
</html>
Binary file removed projects/.DS_Store
Binary file not shown.

0 comments on commit b6b9d28

Please sign in to comment.