app/models/communication/website/page/communication_post.rb
class Communication::Website::Page::CommunicationPost < Communication::Website::Page
def editable_width?
false
end
def full_width_by_default?
true
end
def dependencies
super +
[website.config_default_languages] +
website.post_categories +
website.posts
end
def git_path_relative
'posts/_index.html'
end
end