module Roda::RodaPlugins::Chunked::InstanceMethods

def delay(&block)

content template is to be rendered.
Delay the execution of the block until right before the
def delay(&block)
  raise RodaError, "must pass a block to Roda#delay" unless block
  (@_delays ||= []) << block
end