From 9d64e8898f767b42ce231b34abe4333007d7d0df Mon Sep 17 00:00:00 2001 From: Tomer Kimia Date: Sat, 1 Mar 2014 21:31:39 -0500 Subject: Added bootstrap and games to routes --- config/routes.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config') diff --git a/config/routes.rb b/config/routes.rb index f13c891..bc29e15 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -13,6 +13,8 @@ Leaguer::Application.routes.draw do resources :servers + resources :games + # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". -- cgit v1.2.3-2-g168b From c1f3f731cdf3201905fd8797dd4fe33783f2bc53 Mon Sep 17 00:00:00 2001 From: Tomer Kimia Date: Sat, 1 Mar 2014 22:53:08 -0500 Subject: quick and dirty css --- config/routes.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config') diff --git a/config/routes.rb b/config/routes.rb index bc29e15..3c49858 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -15,6 +15,8 @@ Leaguer::Application.routes.draw do resources :games + root "tournaments#index" + # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". -- cgit v1.2.3-2-g168b From d28c9b6f33ae4a95d620d46caa3799292b39480b Mon Sep 17 00:00:00 2001 From: Tomer Kimia Date: Sun, 2 Mar 2014 11:11:04 -0500 Subject: added preliminary homepage --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config') diff --git a/config/routes.rb b/config/routes.rb index 3c49858..7d898b8 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -15,7 +15,7 @@ Leaguer::Application.routes.draw do resources :games - root "tournaments#index" + root to: 'static#homepage' # The priority is based upon order of creation: first created -> highest priority. # See how all your routes lay out with "rake routes". -- cgit v1.2.3-2-g168b