diff --git a/app/assets/stylesheets/front_side.css b/app/assets/stylesheets/front_side.css new file mode 100644 index 0000000..e69de29 diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb index d8eb73b..dd8a260 100644 --- a/app/controllers/home_controller.rb +++ b/app/controllers/home_controller.rb @@ -1,4 +1,5 @@ class HomeController < ApplicationController + layout 'front_side' before_filter :authenticate_team_member!, :only => :purchase_clue def index end diff --git a/app/views/layouts/front_side.html.erb b/app/views/layouts/front_side.html.erb new file mode 100644 index 0000000..3016aea --- /dev/null +++ b/app/views/layouts/front_side.html.erb @@ -0,0 +1,17 @@ + + + + Scavenge + <%= stylesheet_link_tag "application", "front_side" %> + <%= javascript_include_tag "application" %> + <%= csrf_meta_tags %> + + +

<%= notice %>

+

<%= alert %>

+ +

Welcome to the Front Side

+ <%= yield %> + + +