SampleApp::Application.routes.draw do
get "/static_pages/home", to: 'static_pages#home'
get "/static_pages/help", to: 'static_pages#help'
get "/static_pages/about", to: 'static_pages#about'
get "/static_pages/contacts", to: 'static_pages#contacts'
SampleApp::Application.routes.draw do
get "/static_pages/home", to: 'static_pages#show'
get "/static_pages/help", to: 'static_pages#show'
get "/static_pages/about", to: 'static_pages#show'
get "/static_pages/contacts", to: 'static_pages#show'