Replacing Handlebars with another templating engine

Has anyone tried using another templating engine apart from Handlebars?

1 Like

@parkerproject Handlebars is built in to the core of Ghost, it won’t work with any other templating engine.

The best you could do would be to build a theme using a client-side JS framework that has your templating engine of choice then using that to work directly with Ghost’s API but you’ll need to figure out all of the SEO implications on your own.

That makes sense. the reason for the question is I want to be able to build some logic into my handlebars like bringing in third party content without having to do it on the client, I guess I can just build a handlebars helper for this.