mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-28 17:46:16 +01:00
feat: add parent cids to body class
This commit is contained in:
@@ -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(' ');
|
||||
|
||||
Reference in New Issue
Block a user