Sha256: f88fccc049d3fd11b62035cb9bc80c2a88132b84055cebfe706dbaee4759a967
Contents?: true
Size: 742 Bytes
Versions: 37
Compression:
Stored size: 742 Bytes
Contents
html do head do title "Template::Remarkably #@place" end body do h1 "The #@place Template for Remarkably" a("Home", :href => r(@place)) P do text "Here you can pass some stuff if you like, parameters are just passed like this:" br a("#@place/one", :href => r( @place, :one)) br a("#@place/one/two/three", :href => r( @place, :one, :two, :three)) br a("#@place/one?foo=bar", :href => r( @place, :one, :foo => :bar)) br end div do text "The arguments you have passed to this action are:" if @args.empty? text "none" else args.each do |arg| span arg end end end div @request.params.inspect end end
Version data entries
37 entries across 37 versions & 4 rubygems