Barış Soner Uşaklı 13d181c18b
Update theme.js
2021-01-16 12:37:37 -05:00

31 lines
492 B
JavaScript

"use strict";
var Theme = module.exports;
Theme.defineWidgetAreas = async function(areas) {
areas = areas.concat([
{
'name': 'MOTD',
'template': 'home.tpl',
'location': 'motd'
},
{
'name': 'Homepage Footer',
'template': 'home.tpl',
'location': 'footer'
},
{
'name': 'Category Sidebar',
'template': 'category.tpl',
'location': 'sidebar'
},
{
'name': 'Topic Footer',
'template': 'topic.tpl',
'location': 'footer'
}
]);
return areas;
};