aboutsummaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2011-06-27 15:59:21 -0400
committerBrandon Mathis <brandon@imathis.com>2011-06-27 15:59:21 -0400
commit353ccfd4ebec153a46b12faffff8ab2bba36efc8 (patch)
tree93eb860d1bbad2bb3f008ce1d37523254220a4b0 /Rakefile
parentef3ff431e5c3028b764d1938bb552a76c340799c (diff)
downloadmy_new_personal_website-353ccfd4ebec153a46b12faffff8ab2bba36efc8.tar.xz
my_new_personal_website-353ccfd4ebec153a46b12faffff8ab2bba36efc8.zip
1. Added Category support
2. Designed blog archives pages 3. Restructured Sass 4. Added Categories to rake post metadata 5. Some general style improvements
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index 2d877db1..f3903a95 100644
--- a/Rakefile
+++ b/Rakefile
@@ -61,6 +61,7 @@ task :post, :filename do |t, args|
post.puts "title: #{args.filename.gsub(/[-_]/, ' ').titlecase}"
post.puts "date: #{Time.now.strftime('%Y-%m-%d %H:%M')}"
post.puts "layout: post"
+ post.puts "categories: []"
post.puts "---"
end
end