the-tramp
Version:
Chaplin.js on Node.js. Use it for performance boosts, SEO, re-usability.
12 lines (10 loc) • 312 B
text/coffeescript
View = require 'views/base/view'
template = require 'views/templates/site'
# Site view is a top-level view which is bound to body.
module.exports = class SiteView extends View
container: 'body'
id: 'site-container'
regions:
header: '#header-container'
main: '#page-container'
template: template