homepage redesign
This commit is contained in:
@ -1,9 +1,10 @@
|
||||
class PagesController < ApplicationController
|
||||
layout 'application', :except => [:social_home]
|
||||
layout 'application', :except => [:home, :social_home]
|
||||
|
||||
def home
|
||||
@menu = 'home'
|
||||
@title = 'Internet of Things'
|
||||
render layout: 'home'
|
||||
end
|
||||
|
||||
def social_home; ; end
|
||||
@ -19,5 +20,22 @@ class PagesController < ApplicationController
|
||||
def headers
|
||||
end
|
||||
|
||||
# post contact email
|
||||
def contact_us
|
||||
# if no email address
|
||||
if params[:email].blank? || params[:email].index('@').blank?
|
||||
flash[:alert] = t(:contact_us_no_email)
|
||||
# if no message
|
||||
elsif params[:message].blank?
|
||||
flash[:alert] = t(:contact_us_no_message)
|
||||
# else send email
|
||||
else
|
||||
Mailer.contact_us(params[:email], params[:message]).deliver
|
||||
flash[:notice] = t(:contact_us_success)
|
||||
end
|
||||
|
||||
redirect_to root_path
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user