- Trying to get custom HTML working as described at

https://guide.meteor.com/v1.3/blaze.html#rendering-html
  Still does not work yet.

Thanks to xet7 !
This commit is contained in:
Lauri Ojansivu 2018-12-16 23:46:04 +02:00
parent bd1df642fa
commit 7f74e72cea
2 changed files with 11 additions and 2 deletions

View file

@ -42,6 +42,15 @@ Template.userFormsLayout.helpers({
return Settings.findOne();
},
afterBodyStart() {
return currentSetting.customHTMLafterBodyStart;
},
beforeBodyEnd() {
return currentSetting.customHTMLbeforeBodyEnd;
},
languages() {
return _.map(TAPi18n.getLanguages(), (lang, code) => {
const tag = code;