10 lines
131 B
Ruby
10 lines
131 B
Ruby
class StaticPagesController < ApplicationController
|
|
def home
|
|
@title = "Home"
|
|
end
|
|
|
|
def about
|
|
@title = "About"
|
|
end
|
|
end
|