This commit is contained in:
Sdogruyol 2016-07-09 18:57:35 +03:00
parent 2af03085d2
commit 73d6123f3d
4 changed files with 41 additions and 1 deletions

View file

@ -1,5 +1,18 @@
require "kilt"
CONTENTS = {} of String => MemoryIO -> String
def content_for(name : String, &block : MemoryIO -> String)
puts "Called content_for"
CONTENTS[name] = block
# CONTENTS[name] = block
end
def yield_content(name)
puts "Called yield_content"
CONTENTS[name].call
end
# Uses built-in ECR to render views.
# # Usage
# get '/' do
@ -7,7 +20,12 @@ require "kilt"
# end
macro render(filename, layout)
content = render {{filename}}
render {{layout}}
if CONTENTS.size > 0
puts "CONTENTS greater than 0"
render {{layout}}
else
render {{layout}}
end
end
macro render(filename, *args)
@ -20,6 +38,9 @@ macro return_with(env, status_code = 200, response = "")
next
end
# Adds given HTTP::Handler+ to handlers.
def add_handler(handler)
Kemal.config.add_handler handler