##Create a boring view at app/views/static/monitor.html.erb
Monitoring Page
##Create a boring template at app/views/layouts/monitor.html.erb <title>IndyCar Laps</title> <%= stylesheet_link_tag "application", :media => "all" %> <%= javascript_include_tag "application" %> <%= csrf_meta_tags %> <%= yield %>
##Set up your controller file at app/controllers/static_controller.rb # GET /monitor def monitor render :layout => 'monitor' end
##Set up the route in your config/routes.rb file match 'monitor' => 'static#monitor'