Sha256: 1f6313fd6db08007746febfd7f309d1840c5979c54896986ed6ff6e139e92dbc

Contents?: true

Size: 753 Bytes

Versions: 15

Compression:

Stored size: 753 Bytes

Contents

html do
  head do
    title "Template::Markaby #@place"
  end
  body do
    h1 "The #@place Template for Markaby"
    a("Home", :href => r(@this))
    p do
      text "Here you can pass some stuff if you like, parameters are just passed like this:"
      br
      a("#@place/one", :href => r(@this, @place, :one))
      br
      a("#@place/one/two/three", :href => r(@this, @place, :one, :two, :three))
      br
      a("#@place/one?foo=bar", :href => r(@this, @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

15 entries across 15 versions & 1 rubygems

Version Path
ramaze-2023.01.06 examples/templates/view/external.mab
ramaze-2012.12.08 examples/templates/view/external.mab
ramaze-2012.12.08b examples/templates/view/external.mab
ramaze-2012.04.14 examples/templates/view/external.mab
ramaze-2012.03.07 examples/templates/view/external.mab
ramaze-2011.12.28 examples/templates/view/external.mab
ramaze-2011.10.23 examples/templates/view/external.mab
ramaze-2011.07.25 examples/templates/view/external.mab
ramaze-2011.01.30 examples/templates/view/external.mab
ramaze-2011.01 examples/templates/view/external.mab
ramaze-2010.06.18 examples/templates/view/external.mab
ramaze-2010.04.04 examples/templates/view/external.mab
ramaze-2010.04 examples/templates/view/external.mab
ramaze-2010.03 examples/templates/view/external.mab
ramaze-2010.01 examples/templates/view/external.mab