Module: AppHelper
- Defined in:
- app/helpers/app_helper.rb
Instance Method Summary collapse
-
#f7_app(options = {}, &block) ⇒ Object
Provides the skeleton application layout ready to be customised.
Instance Method Details
#f7_app(options = {}, &block) ⇒ Object
Provides the skeleton application layout ready to be customised
3 4 5 6 7 8 9 10 |
# File 'app/helpers/app_helper.rb', line 3 def f7_app(={}, &block) output = [] output << output << output << capture(&block) output.join("\n").html_safe end |