Static pages not rendering (Webflow to Ghost)

Hey everyone,

I am converting a Webflow site into a ghost theme, and am running into some problems. I have three static pages that I would like to include in my ghost site: home, about and membership. I’ve updated my routes.yaml to look like this:
Screen Shot 2021-05-07 at 11.28.40 AM

The Home page works and so does the Posts (index.hbs) page. However, about and membership do not. Going to the respective urls (site.com/about) pulls up a blank page with the ghost “subscribe” button.

I am not sure why the data from my page-about.hbs or page-membership.hbs are not being rendered.

My site is hosted on Ghost, not locally.

Any ideas what I could try?

Thanks!

This is the code I have for my routes…the syntax might help…notice for example that data sources are identified as follows: data: page.slug …that’s the best I can do, not an expert

routes:
  /subscribe/: members/subscribe
  /signup/: members/signup
  /signin/: members/signin
  /account/: members/account
  /:
    data: page.home
    template: home

  
  /latest-core/:
    controller: channel
    template: latestcore  
    filter: 'tag:-hash-noncore'