h1. The <%= @place %> Template for RedCloth
"Home":<%= r(:/) %>
Here you can pass some stuff if you like, parameters are just passed like this:
"<%= @place %>/one":<%= r(@place, :one) %>
"<%= @place %>/two/three":<%= r(@place, :two, :three) %>
"<%= @place %>/one?foo=bar":<%= r(@place, :foo => :bar) %>
The arguments you have passed to this action are:
<% if @args.empty? %>
none
<% else %>
<% @args.each do |arg| %>
<%= arg %>
<% end %>
<% end %>
<%= request.params.inspect %>