2011-03-27 16:56:15 -04:00
|
|
|
class PagesController < ApplicationController
|
2014-02-17 12:05:39 -05:00
|
|
|
layout 'application', :except => [:social_home]
|
2011-03-27 16:56:15 -04:00
|
|
|
|
2014-02-17 12:05:39 -05:00
|
|
|
def home
|
|
|
|
@menu = 'home'
|
|
|
|
@title = 'Internet of Things'
|
|
|
|
end
|
|
|
|
|
|
|
|
def social_home; ; end
|
|
|
|
|
|
|
|
def features
|
|
|
|
@menu = 'features'
|
|
|
|
end
|
|
|
|
|
|
|
|
def about
|
|
|
|
@menu = 'about'
|
|
|
|
end
|
|
|
|
|
|
|
|
def headers
|
|
|
|
end
|
2011-03-27 16:56:15 -04:00
|
|
|
|
|
|
|
end
|
2014-02-17 12:05:39 -05:00
|
|
|
|