bouquins-ror/app/controllers/static_pages_controller.rb

11 lines
160 B
Ruby
Raw Normal View History

2015-06-28 09:48:20 +00:00
class StaticPagesController < ApplicationController
def home
@title = "Home"
@books_count = Book.count
2015-06-28 09:48:20 +00:00
end
def about
@title = "About"
end
end