I’m running a number of ghost sites and it would be really handy when upgrading if I could see what version of ghost the site was running.
I’ve tried adding a “version” key to the package.json file of the theme and adding handlebars to display it, but that doesn’t seem to work.
In package.json:
"config": {
"posts_per_page": 15,
"version": "4.9.4"
}
In default.hbs:
{{@config.version}}
Is there a way to do this?
Paul