15 lines
201 B
JavaScript
15 lines
201 B
JavaScript
Module.register("helloworld", {
|
|
// Default module config.
|
|
defaults: {
|
|
text: "Hello World!"
|
|
},
|
|
|
|
getTemplate () {
|
|
return "helloworld.njk";
|
|
},
|
|
|
|
getTemplateData () {
|
|
return this.config;
|
|
}
|
|
});
|