21 lines
328 B
JavaScript
Raw Normal View History

/* MagicMirror²
2016-03-24 17:19:32 +01:00
* Module: HelloWorld
*
2020-04-28 23:05:28 +02:00
* By Michael Teeuw https://michaelteeuw.nl
2016-03-24 17:19:32 +01:00
* MIT Licensed.
*/
Module.register("helloworld", {
2016-03-24 17:19:32 +01:00
// Default module config.
defaults: {
2016-04-09 15:49:39 +02:00
text: "Hello World!"
2016-03-24 17:19:32 +01:00
},
2017-09-28 16:11:25 +02:00
getTemplate: function () {
2019-06-05 10:23:58 +02:00
return "helloworld.njk";
2017-09-28 16:11:25 +02:00
},
getTemplateData: function () {
2019-06-05 10:23:58 +02:00
return this.config;
2016-03-24 17:19:32 +01:00
}
});