gpreview
Version:
Preview Ghost themes locally without a full Ghost installation
9 lines • 318 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.titleHelper = titleHelper;
function titleHelper(_options) {
const post = this.post || this.page || this;
const site = this.site || this['@site'];
return post.title || site?.title || '';
}
//# sourceMappingURL=title.js.map