mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-11 12:05:01 -05:00
14 lines
252 B
JavaScript
14 lines
252 B
JavaScript
/*global app*/
|
|
"use strict";
|
|
|
|
var BasePage = require('./base');
|
|
var templates = require('../templates');
|
|
|
|
|
|
module.exports = BasePage.extend({
|
|
template: templates.pages.main,
|
|
initialize: function (spec) {
|
|
this.renderAndBind();
|
|
}
|
|
});
|