scratch/lib/blog.rb
Yann Esposito (Yogsototh) 484a86d879 updated new article
2011-10-21 16:48:31 +02:00

23 lines
640 B
Ruby

# Helper to find an image corresponding to the current
# article
def blogimage(filename,title="no name", divclass=nil)
imgpath=blogimagedir + filename
if not divclass.nil?
cls=%{ class="#{divclass}"}
end
return %{<img alt="#{title}" src="#{imgpath}"#{cls}/>}
end
# Return a blog image with class left added
def leftblogimage(filename,title="no name")
return blogimage(filename, title, "left")
end
def blogimagedir
if depthOf( @item ) == 4
imgpath=@item.parent.path
else
imgpath=@item.path
end
imgpath=imgpath.sub(%r{#{@config[:webprefix]}/../},@config[:webprefix]+'/img/')
end