Method: Writecast::Base_view#content
- Defined in:
- lib/writecast/views/base.rb
#content ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/writecast/views/base.rb', line 7 def content rawtext '<!DOCTYPE HTML>' html do head {render_head} body do div(:id => 'container') do render_body_top_inner div(:id => 'content') {render_content_inner} end end end end |