allow page blocks to add instance vars
This commit is contained in:
parent
e97af242bc
commit
d53bac226e
|
@ -48,9 +48,11 @@ module Middleman::CoreExtensions::Routing
|
|||
|
||||
options[:layout] = settings.layout if options[:layout].nil?
|
||||
|
||||
has_block = block_given?
|
||||
|
||||
paths.each do |p|
|
||||
get(p) do
|
||||
return yield if block_given?
|
||||
instance_eval(&block) if has_block
|
||||
process_request(options)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue