mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 16:01:40 +03:00
01f5dc238f
closes #2597 - Remove .archive-template - Remove .page - Don't output .post-template on pages - Use `page-slug` instead of `page-template-slug` - Always output `page-slug` irrelevant of whether or not there is a custom template
50 lines
1.7 KiB
JavaScript
50 lines
1.7 KiB
JavaScript
// # Body Class Helper
|
|
// Usage: `{{body_class}}`
|
|
//
|
|
// Output classes for the body element
|
|
//
|
|
// We use the name body_class to match the helper for consistency:
|
|
// jscs:disable requireCamelCaseOrUpperCaseIdentifiers
|
|
|
|
var hbs = require('express-hbs'),
|
|
_ = require('lodash'),
|
|
body_class;
|
|
|
|
body_class = function (options) {
|
|
var classes = [],
|
|
context = options.data.root.context,
|
|
post = this.post,
|
|
tags = this.post && this.post.tags ? this.post.tags : this.tags || [],
|
|
page = this.post && this.post.page ? this.post.page : this.page || false;
|
|
|
|
if (_.includes(context, 'home')) {
|
|
classes.push('home-template');
|
|
} else if (_.includes(context, 'post') && post) {
|
|
classes.push('post-template');
|
|
} else if (_.includes(context, 'page') && page) {
|
|
classes.push('page-template');
|
|
classes.push('page-' + this.post.slug);
|
|
} else if (_.includes(context, 'tag') && this.tag) {
|
|
classes.push('tag-template');
|
|
classes.push('tag-' + this.tag.slug);
|
|
} else if (_.includes(context, 'author') && this.author) {
|
|
classes.push('author-template');
|
|
classes.push('author-' + this.author.slug);
|
|
} else if (_.includes(context, 'private')) {
|
|
classes.push('private-template');
|
|
}
|
|
|
|
if (tags) {
|
|
classes = classes.concat(tags.map(function (tag) { return 'tag-' + tag.slug; }));
|
|
}
|
|
|
|
if (_.includes(context, 'paged')) {
|
|
classes.push('paged');
|
|
}
|
|
|
|
classes = _.reduce(classes, function (memo, item) { return memo + ' ' + item; }, '');
|
|
return new hbs.handlebars.SafeString(classes.trim());
|
|
};
|
|
|
|
module.exports = body_class;
|