2011-03-27 22:56:15 +02:00
|
|
|
class PagesController < ApplicationController
|
2014-02-17 18:05:39 +01:00
|
|
|
layout 'application', :except => [:social_home]
|
2011-03-27 22:56:15 +02:00
|
|
|
|
2014-02-17 18:05:39 +01: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 22:56:15 +02:00
|
|
|
|
|
|
|
end
|
2014-02-17 18:05:39 +01:00
|
|
|
|