2016-03-24 17:19:32 +01:00
|
|
|
/* Magic Mirror
|
|
|
|
* 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.
|
|
|
|
*/
|
2016-04-05 14:35:11 -04:00
|
|
|
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
|
|
|
}
|
|
|
|
});
|