Skip to content
This repository has been archived by the owner on Jun 25, 2019. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:jeremyf/scavenge
Browse files Browse the repository at this point in the history
  • Loading branch information
erunyon committed Jun 23, 2011
2 parents bdce7e8 + 54f7131 commit 70813f8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
Empty file.
1 change: 1 addition & 0 deletions 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
Expand Down
17 changes: 17 additions & 0 deletions app/views/layouts/front_side.html.erb
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<title>Scavenge</title>
<%= stylesheet_link_tag "application", "front_side" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
</head>
<body>
<p class="notice"><%= notice %></p>
<p class="alert"><%= alert %></p>

<p>Welcome to the Front Side</p>
<%= yield %>

</body>
</html>

0 comments on commit 70813f8

Please sign in to comment.