Skip to content

Commit c2c4462

Browse files
committed
init
0 parents  commit c2c4462

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+785
-0
lines changed

404.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<html lang='en'>
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>WARNING:Page Not Found!</title>
6+
<meta name="author" content="Sean Lee"/>
7+
</head>
8+
<body>
9+
<h1>Warning</h1>
10+
11+
<p>If you are reading this then this warning is for you. Every word you read of this useless fine print is another second off your life. Don't you have other things to do? Is your life so empty that you honestly can't think of a better way to spend these moments? Or are you so impressed with authority that you give respect and credence to all that claim it? Do you read everything you're supposed to read? Do you think every thing you're supposed to think? Buy what you're told to want? Get out of your apartment. Meet a member of the opposite sex. Stop the excessive shopping and masturbation. Quit your job. Start a fight. Prove you're alive. If you don't claim your humanity you will become a statistic. You have been warned- Tyler. </p>
12+
13+
<!-- google analytics -->
14+
<script type="text/javascript">
15+
16+
var _gaq = _gaq || [];
17+
_gaq.push(['_setAccount', 'UA-8230755-3']);
18+
_gaq.push(['_trackPageview']);
19+
20+
(function() {
21+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
22+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
23+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
24+
})();
25+
26+
</script>
27+
<!-- end google analytics -->
28+
</body>
29+
</html>

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
notimportant.org

Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source 'https://rubygems.org'
2+
ruby "2.0.0"
3+
4+
gem 'github-pages'

Gemfile.lock

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
RedCloth (4.2.9)
5+
classifier (1.3.3)
6+
fast-stemmer (>= 1.0.0)
7+
colorator (0.1)
8+
commander (4.1.5)
9+
highline (~> 1.6.11)
10+
fast-stemmer (1.0.2)
11+
ffi (1.9.3)
12+
github-pages (11)
13+
RedCloth (= 4.2.9)
14+
jekyll (= 1.3.1)
15+
kramdown (= 1.2.0)
16+
liquid (= 2.5.4)
17+
maruku (= 0.6.1)
18+
rdiscount (= 2.1.7)
19+
redcarpet (= 2.3.0)
20+
highline (1.6.20)
21+
jekyll (1.3.1)
22+
classifier (~> 1.3)
23+
colorator (~> 0.1)
24+
commander (~> 4.1.3)
25+
liquid (~> 2.5.2)
26+
listen (~> 1.3)
27+
maruku (~> 0.6.0)
28+
pygments.rb (~> 0.5.0)
29+
redcarpet (~> 2.3.0)
30+
safe_yaml (~> 0.9.7)
31+
kramdown (1.2.0)
32+
liquid (2.5.4)
33+
listen (1.3.1)
34+
rb-fsevent (>= 0.9.3)
35+
rb-inotify (>= 0.9)
36+
rb-kqueue (>= 0.2)
37+
maruku (0.6.1)
38+
syntax (>= 1.0.0)
39+
posix-spawn (0.3.8)
40+
pygments.rb (0.5.4)
41+
posix-spawn (~> 0.3.6)
42+
yajl-ruby (~> 1.1.0)
43+
rb-fsevent (0.9.3)
44+
rb-inotify (0.9.2)
45+
ffi (>= 0.5.0)
46+
rb-kqueue (0.2.0)
47+
ffi (>= 0.5.0)
48+
rdiscount (2.1.7)
49+
redcarpet (2.3.0)
50+
safe_yaml (0.9.7)
51+
syntax (1.0.0)
52+
yajl-ruby (1.1.0)
53+
54+
PLATFORMS
55+
ruby
56+
57+
DEPENDENCIES
58+
github-pages

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is my home page

_config.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
markdown: kramdown
2+
permalink: pretty
3+
title: little touch team

_layouts/default.html

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<!DOCTYPE html>
2+
<html lang="zh">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>{% if page.title %}{{ page.title }} · {% endif %}{{ site.title }}</title>
6+
<meta name="author" content="little touch">
7+
<!--le css -->
8+
<!-- <link rel="stylesheet" href="/css/reset.css" type="text/css" /> -->
9+
<link rel="stylesheet" href="/css/style.css" type="text/css" />
10+
11+
12+
<!-- le js -->
13+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
14+
<!--[if lt IE 9]>
15+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
16+
<![endif]-->
17+
18+
<link rel="shortcut icon" href="/favicon.ico" />
19+
</head>
20+
<body>
21+
<div id="container">
22+
<header>
23+
<hgroup>
24+
<h1><a href="/">little touch</a></h1>
25+
</hgroup>
26+
</header>
27+
{{ content }}
28+
<footer>
29+
<p>&copy; Copyright 2013, little touch team
30+
</footer>
31+
</div>
32+
33+
<!-- google analytics -->
34+
<script type="text/javascript">
35+
36+
var _gaq = _gaq || [];
37+
_gaq.push(['_setAccount', 'UA-8230755-3']);
38+
_gaq.push(['_trackPageview']);
39+
40+
(function() {
41+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
42+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
43+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
44+
})();
45+
46+
</script>
47+
<!-- end google analytics -->
48+
</body>
49+
</html>

_layouts/post.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: default
3+
---
4+
<article class="post">
5+
<header>
6+
<h1>{{ page.title}}</h1>
7+
<time datetime="{{ page.date | date: "%Y-%m-%d" }}" pubdate >{{ page.date | date_to_string }}</time>
8+
</header>
9+
{{ content }}
10+
</article>

_site/404.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<html lang='en'>
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>WARNING:Page Not Found!</title>
6+
<meta name="author" content="Sean Lee"/>
7+
</head>
8+
<body>
9+
<h1>Warning</h1>
10+
11+
<p>If you are reading this then this warning is for you. Every word you read of this useless fine print is another second off your life. Don't you have other things to do? Is your life so empty that you honestly can't think of a better way to spend these moments? Or are you so impressed with authority that you give respect and credence to all that claim it? Do you read everything you're supposed to read? Do you think every thing you're supposed to think? Buy what you're told to want? Get out of your apartment. Meet a member of the opposite sex. Stop the excessive shopping and masturbation. Quit your job. Start a fight. Prove you're alive. If you don't claim your humanity you will become a statistic. You have been warned- Tyler. </p>
12+
13+
<!-- google analytics -->
14+
<script type="text/javascript">
15+
16+
var _gaq = _gaq || [];
17+
_gaq.push(['_setAccount', 'UA-8230755-3']);
18+
_gaq.push(['_trackPageview']);
19+
20+
(function() {
21+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
22+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
23+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
24+
})();
25+
26+
</script>
27+
<!-- end google analytics -->
28+
</body>
29+
</html>

_site/CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
notimportant.org

_site/Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source 'https://rubygems.org'
2+
ruby "2.0.0"
3+
4+
gem 'github-pages'

_site/Gemfile.lock

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
RedCloth (4.2.9)
5+
classifier (1.3.3)
6+
fast-stemmer (>= 1.0.0)
7+
colorator (0.1)
8+
commander (4.1.5)
9+
highline (~> 1.6.11)
10+
fast-stemmer (1.0.2)
11+
ffi (1.9.3)
12+
github-pages (11)
13+
RedCloth (= 4.2.9)
14+
jekyll (= 1.3.1)
15+
kramdown (= 1.2.0)
16+
liquid (= 2.5.4)
17+
maruku (= 0.6.1)
18+
rdiscount (= 2.1.7)
19+
redcarpet (= 2.3.0)
20+
highline (1.6.20)
21+
jekyll (1.3.1)
22+
classifier (~> 1.3)
23+
colorator (~> 0.1)
24+
commander (~> 4.1.3)
25+
liquid (~> 2.5.2)
26+
listen (~> 1.3)
27+
maruku (~> 0.6.0)
28+
pygments.rb (~> 0.5.0)
29+
redcarpet (~> 2.3.0)
30+
safe_yaml (~> 0.9.7)
31+
kramdown (1.2.0)
32+
liquid (2.5.4)
33+
listen (1.3.1)
34+
rb-fsevent (>= 0.9.3)
35+
rb-inotify (>= 0.9)
36+
rb-kqueue (>= 0.2)
37+
maruku (0.6.1)
38+
syntax (>= 1.0.0)
39+
posix-spawn (0.3.8)
40+
pygments.rb (0.5.4)
41+
posix-spawn (~> 0.3.6)
42+
yajl-ruby (~> 1.1.0)
43+
rb-fsevent (0.9.3)
44+
rb-inotify (0.9.2)
45+
ffi (>= 0.5.0)
46+
rb-kqueue (0.2.0)
47+
ffi (>= 0.5.0)
48+
rdiscount (2.1.7)
49+
redcarpet (2.3.0)
50+
safe_yaml (0.9.7)
51+
syntax (1.0.0)
52+
yajl-ruby (1.1.0)
53+
54+
PLATFORMS
55+
ruby
56+
57+
DEPENDENCIES
58+
github-pages

_site/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is my home page

_site/about/index.html

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<!DOCTYPE html>
2+
<html lang="zh">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>About · little touch team</title>
6+
<meta name="author" content="little touch">
7+
<!--le css -->
8+
<!-- <link rel="stylesheet" href="/css/reset.css" type="text/css" /> -->
9+
<link rel="stylesheet" href="/css/style.css" type="text/css" />
10+
11+
12+
<!-- le js -->
13+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
14+
<!--[if lt IE 9]>
15+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
16+
<![endif]-->
17+
18+
<link rel="shortcut icon" href="/favicon.ico" />
19+
</head>
20+
<body>
21+
<div id="container">
22+
<header>
23+
<hgroup>
24+
<h1><a href="/">little touch</a></h1>
25+
</hgroup>
26+
</header>
27+
<h1 id="about">About</h1>
28+
29+
<h2 id="i-use">I use</h2>
30+
<ul>
31+
<li>
32+
<p>Hardware</p>
33+
34+
<ul>
35+
<li>Motorola Fire</li>
36+
<li>Kindle Keyboard</li>
37+
<li>Macbook Pro Early 2011</li>
38+
</ul>
39+
</li>
40+
<li>
41+
<p>Software</p>
42+
43+
<ul>
44+
<li>Textmate</li>
45+
<li>Chrome Canary</li>
46+
<li>Alfred</li>
47+
<li>iTerm2</li>
48+
<li>Dropbox</li>
49+
<li>zsh (and the great <a href="https://github.com/robbyrussell/oh-my-zsh">oh-my-zsh</a>)</li>
50+
<li>DuckDuckGo</li>
51+
<li>iPython ( my other shell)</li>
52+
</ul>
53+
</li>
54+
</ul>
55+
56+
57+
<footer>
58+
<p>&copy; Copyright 2013, little touch team
59+
</footer>
60+
</div>
61+
62+
<!-- google analytics -->
63+
<script type="text/javascript">
64+
65+
var _gaq = _gaq || [];
66+
_gaq.push(['_setAccount', 'UA-8230755-3']);
67+
_gaq.push(['_trackPageview']);
68+
69+
(function() {
70+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
71+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
72+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
73+
})();
74+
75+
</script>
76+
<!-- end google analytics -->
77+
</body>
78+
</html>

_site/atom.xml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<feed xmlns="http://www.w3.org/2005/Atom">
3+
4+
<title>Not Important</title>
5+
<link href="http://notimportant.org/atom.xml" rel="self"/>
6+
<link href="http://notimportant.org/"/>
7+
<updated>2013-12-09T23:24:32+08:00</updated>
8+
<id>http://notimportant.org/</id>
9+
<author>
10+
<name>Sean Lee</name>
11+
<email>[email protected]</email>
12+
</author>
13+
14+
15+
16+
</feed>

_site/css/reset.css

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)