Method: Main#index

Defined in:
app/controllers/main.rb

#indexObject

GET /



5
6
7
8
9
10
11
# File 'app/controllers/main.rb', line 5

def index
  template('main/index.haml')
  return_response do |content|
    # This sets 'title' in the template.
    content.title = 'Main Index'
  end
end