This commit is contained in:
Rico Sta. Cruz 2012-03-16 14:24:01 +08:00
parent 85cc0fe827
commit be8b53eada
3 changed files with 13 additions and 1 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Cheatsheets
This is my personal collection of cheatsheets I've made while learning things.

9
Rakefile Normal file
View File

@ -0,0 +1,9 @@
desc "Build"
task :build do
system "proton build"
end
desc "Deploy"
task :deploy => :build do
system "git update-ghpages rstacruz/cheatsheets -i _output"
end

View File

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<title></title>
<link href="/style.css" rel="stylesheet" />
<link href="style.css" rel="stylesheet" />
</head>
<body>
<h1><%= page.meta.title || File.basename(page.file, '.*').capitalize %></h1>