980b0a8610
closes #4519 - Added configurable route keywords - Replaced instances of hard-coded keywords with config - Added keywords to frontend tests stub config
48 lines
1.5 KiB
JavaScript
48 lines
1.5 KiB
JavaScript
// # Meta Title Helper
|
|
// Usage: `{{meta_title}}`
|
|
//
|
|
// Page title used for sharing and SEO
|
|
//
|
|
// We use the name meta_title to match the helper for consistency:
|
|
// jscs:disable requireCamelCaseOrUpperCaseIdentifiers
|
|
|
|
var _ = require('lodash'),
|
|
config = require('../config'),
|
|
filters = require('../filters'),
|
|
meta_title;
|
|
|
|
meta_title = function (options) {
|
|
/*jshint unused:false*/
|
|
var title = '',
|
|
blog,
|
|
page,
|
|
pageString = '',
|
|
pagePattern = new RegExp('\\/' + config.routeKeywords.page + '\\/(\\d+)');
|
|
|
|
if (_.isString(this.relativeUrl)) {
|
|
blog = config.theme;
|
|
page = this.relativeUrl.match(pagePattern);
|
|
if (page) {
|
|
pageString = ' - Page ' + page[1];
|
|
}
|
|
|
|
if (!this.relativeUrl || this.relativeUrl === '/' || this.relativeUrl === '') {
|
|
title = blog.title;
|
|
} else if (this.author) {
|
|
title = this.author.name + pageString + ' - ' + blog.title;
|
|
} else if (this.tag) {
|
|
title = _.isEmpty(this.tag.meta_title) ? this.tag.name + pageString + ' - ' + blog.title : this.tag.meta_title;
|
|
} else if (this.post) {
|
|
title = _.isEmpty(this.post.meta_title) ? this.post.title : this.post.meta_title;
|
|
} else {
|
|
title = blog.title + pageString;
|
|
}
|
|
}
|
|
return filters.doFilter('meta_title', title).then(function (title) {
|
|
title = title || '';
|
|
return title.trim();
|
|
});
|
|
};
|
|
|
|
module.exports = meta_title;
|