Remove some older content.

This commit is contained in:
2018-10-05 18:42:33 +02:00
parent aeed65d7d8
commit 1d3989394e
3 changed files with 9 additions and 112 deletions
+7 -8
View File
@@ -6,7 +6,7 @@ SimpleNavigation::Configuration.run do |navigation|
# The renderer can also be specified as option in the render_navigation call.
# navigation.renderer = Your::Custom::Renderer
# Specify the class that will be applied to active navigation items. Defaults to 'selected'
# Specify the class that will be applied to active navigation items. Defaults to 'selected'
#navigation.selected_class = 'selected'
# Specify the class that will be applied to the current leaf of
@@ -28,12 +28,12 @@ SimpleNavigation::Configuration.run do |navigation|
# Specify if the auto highlight feature is turned on (globally, for the whole navigation). Defaults to true
#navigation.auto_highlight = true
# Specifies whether auto highlight should ignore query params and/or anchors when
# comparing the navigation items with the current URL. Defaults to true
# Specifies whether auto highlight should ignore query params and/or anchors when
# comparing the navigation items with the current URL. Defaults to true
#navigation.ignore_query_params_on_auto_highlight = true
#navigation.ignore_anchors_on_auto_highlight = true
# If this option is set to true, all item names will be considered as safe (passed through html_safe). Defaults to false.
#navigation.consider_item_names_as_safe = false
@@ -56,7 +56,7 @@ SimpleNavigation::Configuration.run do |navigation|
# when the item should be highlighted, you can set a regexp which is matched
# against the current URI. You may also use a proc, or the symbol <tt>:subpath</tt>.
#
#primary.item :greendays, '#Greensaturday', greendays_path
unless supporter_signed_in?
@@ -66,7 +66,6 @@ SimpleNavigation::Configuration.run do |navigation|
initiative.item :arguments, I18n.t('.shared.topnavigation.arguments'), arguments_path
initiative.item :faq, I18n.t('.shared.topnavigation.faq'), faq_path
initiative.item :numbers, I18n.t('.shared.topnavigation.numbers'), numbers_path
initiative.item :collection_concept, I18n.t('.shared.topnavigation.collection_concept'), collection_concept_path
end
primary.item :statements, I18n.t('.shared.topnavigation.statements'), statements_path do |statements|
statements.item :new_statement, I18n.t('.supporters.publicity.renew'), new_publicity_path
@@ -85,4 +84,4 @@ SimpleNavigation::Configuration.run do |navigation|
end
end
end
+2 -3
View File
@@ -1,6 +1,6 @@
Rails.application.routes.draw do
devise_for :supporters
root to: 'supporters#new'
root to: 'supporters#new'
get "/pages/:page" => "pages#show"
@@ -19,7 +19,6 @@ Rails.application.routes.draw do
get '/sponsoring', to: 'pages#show', as: :sponsoring, page: 'sponsoring'
get '/donation', to: 'pages#show', as: :donation, page: 'donation'
get '/numbers', to: 'pages#show', as: :numbers, page: 'numbers'
get '/collection_concept', to: 'pages#show', as: :collection_concept, page: 'collection_concept'
get '/statements', to: 'pages#show', as: :statements, page: 'statements'
end
@@ -29,7 +28,7 @@ Rails.application.routes.draw do
resources :supporters, only: [:new, :create]
resource :publicity
get '/thanks', to: 'pages#thanks', as: :thanks
resources :charges
resources :charges
end
mount RailsAdmin::Engine => '/admin', as: 'rails_admin'