16 lines
257 B
Ruby
16 lines
257 B
Ruby
|
class PagesController < ApplicationController
|
||
|
include HighVoltage::StaticPage
|
||
|
|
||
|
layout :layout_for_page
|
||
|
|
||
|
private
|
||
|
|
||
|
def layout_for_page
|
||
|
if params[:id].to_s.starts_with?("synthesis/")
|
||
|
'synthesis'
|
||
|
else
|
||
|
'application'
|
||
|
end
|
||
|
end
|
||
|
end
|