diff --git a/_plugins/image.rb b/_plugins/image.rb
index ec3935e0..29e8a38b 100644
--- a/_plugins/image.rb
+++ b/_plugins/image.rb
@@ -3,8 +3,9 @@
class ImageTag < Liquid::Tag
def render(context)
src = @markup.strip
- "
-
+ baseurl = Jekyll.configuration({})['baseurl']
+ "
+
"
end
end