11 lines
160 B
Ruby
11 lines
160 B
Ruby
class StaticPagesController < ApplicationController
|
|
def home
|
|
@title = "Home"
|
|
@books_count = Book.count
|
|
end
|
|
|
|
def about
|
|
@title = "About"
|
|
end
|
|
end
|