class Phlex::SGML

def around_template

Returns:
  • (nil) -

Other tags:
    Abstract: - Override this method to hook in around a template render. You can do things before and after calling `super` to render the template. You should always call `super` so that callbacks can be added at different layers of the inheritance tree.
def around_template
	before_template
	yield
	after_template
	nil
end