Created
June 23, 2010 04:41
-
-
Save blakesmith/449509 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# An example Jekyll Liquid tag. Utilizes the new plugin system. | |
# | |
# 1. Make a _plugins directory in your jekyll site, and put this class in a file there. | |
# 2. In anyone of your pages, you can use the 'render_time' liquid tag like so: | |
# {% render_time Page generated at: %} | |
module Jekyll | |
class RenderTimeTag < Liquid::Tag | |
def initialize(tag_name, text, tokens) | |
super | |
@text = text | |
end | |
def render(context) | |
"#{@text} #{Time.now}" | |
end | |
end | |
end | |
Liquid::Template.register_tag('render_time', Jekyll::RenderTimeTag) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment