class PageController < ApplicationController def index # Something end def greetings render partial: 'greetings' end def about render partial: 'about' end def stat @artists = Artist.count @albums = Album.count @tracks = Track.count @users = User.count render partial: 'stat' end end