bouquins-ror/app/controllers/static_pages_controller.rb

11 lines
164 B
Ruby
Raw Normal View History

2015-06-28 09:48:20 +00:00
class StaticPagesController < ApplicationController
def home
2015-08-14 08:10:03 +00:00
@title = t(:home)
@books_count = Book.count
2015-06-28 09:48:20 +00:00
end
def about
2015-08-14 08:10:03 +00:00
@title = t(:about)
2015-06-28 09:48:20 +00:00
end
end