bouquins-ror/app/controllers/static_pages_controller.rb

11 lines
169 B
Ruby
Raw Normal View History

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