aboutsummaryrefslogtreecommitdiff
path: root/.themes/classic/_plugins/include_file.rb
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2011-07-11 11:17:15 -0400
committerBrandon Mathis <brandon@imathis.com>2011-07-11 11:17:15 -0400
commitee7b9dd9581a048cee17e89181cba94254033fb2 (patch)
tree42c7d47ebfcaf9faf68a302a39a4815ef2e8f5ec /.themes/classic/_plugins/include_file.rb
parentd4139e394ec9f70acfcb35f25340bdb541d0d7ee (diff)
downloadmy_new_personal_website-ee7b9dd9581a048cee17e89181cba94254033fb2.tar.xz
my_new_personal_website-ee7b9dd9581a048cee17e89181cba94254033fb2.zip
Changed _plugins folder to plugins and updated rake tasks accordingly
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)
-