Sha256: 8718c559b9461cdbcd569eeae52d6fa662086106c9f9d836aa79e971cca0dcc0

Contents?: true

Size: 753 Bytes

Versions: 50

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

50 entries across 50 versions & 6 rubygems

Version Path
Pistos-ramaze-2008.09 examples/templates/template/external.mab
Pistos-ramaze-2008.12 examples/templates/template/external.mab
Pistos-ramaze-2009.01 examples/templates/template/external.mab
Pistos-ramaze-2009.02 examples/templates/template/external.mab
Pistos-ramaze-2009.04.08 examples/templates/view/external.mab
Pistos-ramaze-2009.06.12 examples/templates/view/external.mab
clivecrous-ramaze-0.3.9.5 examples/templates/template/external.mab
manveru-ramaze-2008.07 examples/templates/template/external.mab
manveru-ramaze-2008.08 examples/templates/template/external.mab
manveru-ramaze-2008.09 examples/templates/template/external.mab
manveru-ramaze-2008.10 examples/templates/template/external.mab
manveru-ramaze-2008.12 examples/templates/template/external.mab
manveru-ramaze-2009.01 examples/templates/template/external.mab
manveru-ramaze-2009.04.01 examples/templates/view/external.mab
manveru-ramaze-2009.04.08 examples/templates/view/external.mab
manveru-ramaze-2009.04.18 examples/templates/view/external.mab
manveru-ramaze-2009.04.22 examples/templates/view/external.mab
manveru-ramaze-2009.04 examples/templates/view/external.mab
manveru-ramaze-2009.05.08 examples/templates/view/external.mab
manveru-ramaze-2009.05 examples/templates/view/external.mab