class Pettanr.View.Layout.Sns.Header extends Pettanr.View tagName: 'div' id: 'header' initialize: (options) -> @parent = options.parent render: () -> this.$el.html('') this refresh: (view) -> this.$el.html(view.el) class Pettanr.View.Layout.Sns.Body extends Pettanr.View tagName: 'div' id: 'body' initialize: (options) -> @parent = options.parent render: () -> this.$el.html('') this refresh: (view) -> this.$el.html(view.el) class Pettanr.View.Layout.Sns.Footer extends Pettanr.View tagName: 'div' id: 'footer' initialize: (options) -> render: () -> this.$el.html('') this