thingspeak/app/controllers/pages_controller.rb

24 lines
304 B
Ruby
Raw Normal View History

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