1
0
mirror of https://github.com/bitwarden/help synced 2025-12-06 00:03:30 +00:00
Files
help/_plugins/image.rb
Kyle Spearrin cb2ffd927c fluidbox images
2017-05-23 17:10:24 -04:00

14 lines
385 B
Ruby

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