Module: VisualHelpers

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

Instance Method Summary collapse

Instance Method Details

#end_of_lecture(type = :thatsall) ⇒ Object



3
4
5
6
7
8
9
10
# File 'lib/coursegen/course/helpers/visual_helpers.rb', line 3

def end_of_lecture(type=:thatsall)
  if (type == :thatsall)
    part1 = "<slide_break></slide_break>\n\n"
    part2 = "## See you next time!!\n\n"
    part3 = "<img src=\"/content/topics/images/thatsallfolks.jpg\" class=\"img-thumbnail d-block mx-auto\" style=\"height:300px;\"/>"
    part1 + part2 + part3
  end
end