diff --git a/app/views/pages/people.html.erb b/app/views/pages/people.html.erb new file mode 100644 index 0000000..ea92f4e --- /dev/null +++ b/app/views/pages/people.html.erb @@ -0,0 +1,12 @@ +
+ <% 10.times do |i|%> +
+

Foo User <%= i%>

+

Bar Details

+

Bar Details

+

Bar Details

+

Bar Details

+

Bar Details

+
+ <%end%> +
diff --git a/config/routes.rb b/config/routes.rb index e93918a..ee713eb 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -6,7 +6,5 @@ root :to => 'high_voltage/pages#show', :id => 'home' get '/hackfests' => 'high_voltage/pages#show', :id => 'hackfests', :as => 'hackfests' get '/calendar' => 'high_voltage/pages#show', :id => 'calendar', :as => 'calendar' -# resources :presentations, :only => [:index, :show] -# get '/presenters/leaders' => 'leader_board#index' -# resources :presenters, :only => [:show] + get '/people' => 'high_voltage/pages#show', :id => 'people', :as => 'people' end