I’m going to do my best to lay out the issue here. First of all, I have a custom home.hbs
added which is displayed here.
General info:
- Ghost version 3.14.0
- Domain https://amberimageworks.org/
-
index.hbs
page in question https://amberimageworks.org/culture/
My routes.hbs
is currently:
/:
template: home
/join/: members/signup
/access/: members/signin
collections:
/culture/:
permalink: /culture/{slug}/
template: index
taxonomies:
tag: /series/{slug}/
author: /team/{slug}/
I’m still getting the hang of routes.hbs
and how it affects things, so something here could be misconfigured.
Now the issue lies in the /culture/
page. I have my posts listed here, but I’m running into these issues:
- Site metadata isn’t properly showing up. It’s missing a featured image.
- I want to give it a specific
<title>
value in the<head>
.
What I’m trying to do is find a helper like #has
or #is
that would allow me to:
- Give the
/culture/
page a specific title. - Add metadata for SEO.
- Display page counts like “(Page 3)” after the title, but not on the first page.
I know there are a few things here but I’ve looked everywhere for an answer and I think it’s just a unique combination of configurations.