The help website/knowledgebase (bitwarden.com/help).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
385 B

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)