module HelloWorld include Waves::Foundations::Compact module Resources class Map include Hoshi::View :html4 on( :get, [ 'hello', :name ] ) { hello( captured.name ) } def hello( name ) h1 "Hello, World" p "Hello, my name is #{name}." end end end end