thingspeak/app/controllers/pages_controller.rb
2014-02-17 12:05:39 -05:00

24 lines
304 B
Ruby

class PagesController < ApplicationController
layout 'application', :except => [:social_home]
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
end