aboutsummaryrefslogtreecommitdiff
path: root/.themes/classic/plugins/include_file.rb
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2011-07-18 17:04:56 -0400
committerBrandon Mathis <brandon@imathis.com>2011-07-18 17:04:56 -0400
commit1fd21a6e254cecc10a6ae05106bfa0f665a4d90d (patch)
tree88bd95d117e7bab3ffc925895ad243d74c71984e /.themes/classic/plugins/include_file.rb
parent64b23d9f34f140b8e544960070525343dfe1273b (diff)
downloadmy_new_personal_website-1fd21a6e254cecc10a6ae05106bfa0f665a4d90d.tar.xz
my_new_personal_website-1fd21a6e254cecc10a6ae05106bfa0f665a4d90d.zip
Renamed include_file plugin to render_partial, added documentation to include_code and render_partial
Diffstat (limited to '.themes/classic/plugins/include_file.rb')
-rw-r--r--.themes/classic/plugins/include_file.rb31
1 files changed, 0 insertions, 31 deletions
diff --git a/.themes/classic/plugins/include_file.rb b/.themes/classic/plugins/include_file.rb
deleted file mode 100644
index 3862228b..00000000
--- a/.themes/classic/plugins/include_file.rb
+++ /dev/null
@@ -1,31 +0,0 @@
-require 'pathname'
-
-module Jekyll
-
- class IncludePartialTag < Liquid::Tag
- def initialize(tag_name, file, tokens)
- super
- @file = file.strip
- end
-
- def render(context)
- file_dir = (context.registers[:site].source || 'source')
- file_path = Pathname.new(file_dir).expand_path
- file = file_path + @file
-
- unless file.file?
- return "File #{file} could not be found"
- end
-
- Dir.chdir(file_path) do
- partial = Liquid::Template.parse(file.read)
- context.stack do
- partial.render(context)
- end
- end
- end
- end
-end
-
-Liquid::Template.register_tag('include_partial', Jekyll::IncludePartialTag)
-