11 lines
164 B
Ruby
11 lines
164 B
Ruby
class StaticPagesController < ApplicationController
|
|
def home
|
|
@title = t(:home)
|
|
@books_count = Book.count
|
|
end
|
|
|
|
def about
|
|
@title = t(:about)
|
|
end
|
|
end
|