I am using Ghost as a simple static website with blog.
My menu consists of:
- About
- Services
- Blog
- Contact
I would like the site to initially open using the “About” page.
I am using Ghost as a simple static website with blog.
My menu consists of:
I would like the site to initially open using the “About” page.
I think a good starting point is the tutorial for a fully custom home page:
This page has been deleted and only available via archive.org
However it seems with routing you can do even more Ghost Themes - Dynamic URLs & Routing
Here is a starting point example:
The routes.yaml
theme file.
routes:
/:
data: page.about
template: home
The About page slug should be about
.
The home.hbs
theme file.
{{!< default}}
{{#page}}
{{ content }}
{{/page}}