feat: add parent cids to body class

This commit is contained in:
Barış Soner Uşaklı
2020-03-26 12:04:04 -04:00
parent aabddea2b7
commit 23571224b5
4 changed files with 10 additions and 0 deletions

View File

@@ -127,6 +127,13 @@ module.exports = function (middleware) {
parts.push('page-topic-category-' + templateData.category.cid);
parts.push('page-topic-category-' + utils.slugify(templateData.category.name));
}
if (templateData.breadcrumbs) {
templateData.breadcrumbs.forEach(function (crumb) {
if (crumb.hasOwnProperty('cid')) {
parts.push('parent-category-' + crumb.cid);
}
});
}
parts.push('page-status-' + res.statusCode);
return parts.join(' ');