# -*- encoding : utf-8 -*- module IconHelper def i(name,color=:gray_dark, size=16,options = nil) image_tag(i_path(name,color,size), options) end def i_path(name,color=:gray_dark, size=16) if size.kind_of?(Integer) s = size.to_s+"x"+size.to_s else s = size.to_s end "/assets/shared/iconic/"+color.to_s+"/"+name.to_s+"_"+s+".png" end end