73 lines
643 B
Ruby
73 lines
643 B
Ruby
class CorpsController < ApplicationController
|
|
|
|
layout "corporate"
|
|
|
|
def about
|
|
render(layout: 'jtx') and return if request.params[:jtx]
|
|
end
|
|
|
|
def news
|
|
|
|
end
|
|
|
|
def media_center
|
|
|
|
end
|
|
|
|
def overview
|
|
|
|
end
|
|
|
|
def features
|
|
|
|
end
|
|
|
|
def faqs
|
|
|
|
end
|
|
|
|
def screenshots
|
|
|
|
end
|
|
|
|
def photos
|
|
|
|
end
|
|
|
|
def logos
|
|
|
|
end
|
|
|
|
def testimonials
|
|
|
|
end
|
|
|
|
def audio
|
|
|
|
end
|
|
|
|
def videos
|
|
|
|
end
|
|
|
|
def privacy
|
|
render(layout: 'jtx') and return if request.params[:jtx]
|
|
end
|
|
|
|
def terms
|
|
render(layout: 'jtx') and return if request.params[:jtx]
|
|
end
|
|
|
|
def help
|
|
|
|
end
|
|
|
|
def cookie_policy
|
|
|
|
end
|
|
|
|
def premium_accounts_path
|
|
|
|
end
|
|
end
|