Skip to content

Commit

Permalink
Making "BucketWise" page title link to the root path (subscription in…
Browse files Browse the repository at this point in the history
…dex).
  • Loading branch information
Kieran Pilkington authored and jamis committed May 18, 2009
1 parent f241f0e commit 1b991d5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/views/layouts/application.html.haml
Expand Up @@ -15,7 +15,8 @@
%h1
%span.actions
= link_to "log out", session_path, :method => :delete
BucketWise
%span.title
= link_to "BucketWise", root_path
#container
= yield
Expand Down
5 changes: 4 additions & 1 deletion config/routes.rb
Expand Up @@ -8,5 +8,8 @@
map.resources :tags, :has_many => :events
map.resources :tagged_items, :statements

map.connect "", :controller => "subscriptions", :action => "index"
map.with_options :controller => "subscriptions", :action => "index" do |home|
home.root
home.connect ""
end
end
4 changes: 4 additions & 0 deletions public/stylesheets/money.css
Expand Up @@ -48,6 +48,10 @@ div#header h1 span.actions a {
color: #696;
}

div#header h1 span.title a {
color: #696;
}

div#header h1 span.actions a:hover {
color: #00f;
}
Expand Down

0 comments on commit 1b991d5

Please sign in to comment.