mirror of
https://github.com/bitwarden/help
synced 2025-12-06 00:03:30 +00:00
14 lines
385 B
Ruby
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) |