Method: ContentHelpers#include_image

Defined in:
lib/coursegen/course/helpers/content_helpers.rb

#include_image(filename_string, width: 8) ⇒ Object



52
53
54
55
56
57
58
59
60
# File 'lib/coursegen/course/helpers/content_helpers.rb', line 52

def include_image filename_string, width: 8
template_string = "<div class=\"row\">\n<div class=\"col-md-offset-2 col-md-\#{width}\">\n  <img src=\"\#{filename_string}\" class=\"img-responsive img-thumbnail\" />\n</div>\n</div>\n"
end