module Scrivito # This module contains helpers that render tags for the html head # and the end of the html body. # @api public module LayoutHelper # Renders all tags needed in the HTML head. # @api public def scrivito_header_tags generator_meta_tag + include_editing_stylesheet + widget_reset_stylesheet end # Renders all tags needed at the end of the BODY tag. # @api public def scrivito_after_content_tags include_editing_javascript end end end