mirror of
https://github.com/moparisthebest/kaiwa
synced 2025-02-16 23:20:10 -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();
|
||
|
}
|
||
|
});
|