summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 3978585..6b750d8 100644
--- a/Rakefile
+++ b/Rakefile
@@ -29,6 +29,7 @@ task :new_post, :title do |t, args|
post.puts "category: "
post.puts "tags: []"
post.puts "---"
+ page.puts "{% include JB/setup %}"
end
end # task :new_post
@@ -55,7 +56,7 @@ task :switch_theme, :theme do |t, args|
page.puts "layout: default"
page.puts "---"
end
- page.puts "{% include JB/set_paths %}"
+ page.puts "{% include JB/setup %}"
page.puts "{% include themes/#{args.theme}/#{File.basename(filename)} %}"
end
end