app/models/communication/website/page/education_program.rb
class Communication::Website::Page::EducationProgram < Communication::Website::Page
def is_necessary_for_website?
website.about && website.about&.respond_to?(:programs)
end
def editable_width?
false
end
def full_width_by_default?
true
end
def full_width
true
end
def dependencies
super +
[website.config_default_languages] +
website.education_programs
end
def git_path_relative
'programs/_index.html'
end
end