Hi there,
I have completely converted our static website to handlebars and the Ghost theme I followed this tutorial to create 8 static pages with the hopes of having my regular Ghost index on /blog/ instead of /.
If you look at my routes.yaml file:
routes:
/: home
/about/: about
/bm/: bm
/bookman/: bookman
/contact/: contact
/intouch/: intouch
/intown/: intown
/search/: search
/blog/: index
collections:
/:
permalink: /{slug}/
template:
- index
taxonomies:
tag: /tag/{slug}/
author: /author/{slug}/
You can see I have created routes for all my static pages. I am trying to route my index.hbs file to /blog/ but all I am seeing on that page is my header and footer.
Any ideas of what I can do to fix this?