Page title (index.hbs) on Ghost blog with homepage

I am using a static home page on my Ghost website. However, the blog page (where posts are located - index.hbs) displays a title of “Page title (Page 1)”. Is it possible to remove the “Page 1” and replace it with the actual name of the page (let’s say “articles”)? Just like with any page made in the Ghost editor itself.

1 Like

in /core/frontend/meta/title.js we have a line like this
pageString = _.has(options.hash, ‘page’) ? options.hash.page.replace(’%’, pagination.page) : ’ (Page ’ + pagination.page + ‘)’;
and if u change Page to anything u want it will replace in ghost after restart

Thanks. I’m still kind of new to Ghost and development…where do I find title.js?