engine/lib/locomotive/liquid/filters/resize.rb

16 lines
271 B
Ruby
Raw Normal View History

module Locomotive
module Liquid
module Filters
module Resize
def resize(input, resize_string)
Locomotive::Dragonfly.resize_url(input, resize_string)
end
end
::Liquid::Template.register_filter(Resize)
end
end
end