1
0
mirror of https://github.com/bitwarden/help synced 2025-12-06 00:03:30 +00:00
Files
help/_plugins/image.rb
2017-05-23 13:09:38 -04:00

14 lines
360 B
Ruby

module Jekyll
module Tags
class ImageTag < Liquid::Tag
def render(context)
src = @markup.strip
"<a href=\"/images/#{src}\" target=\"_blank\">
<img class=\"img-responsive img-thumbnail\" src=\"/images/#{src}\" />
</a>"
end
end
end
end
Liquid::Template.register_tag('image', Jekyll::Tags::ImageTag)