Custom Pages URLs
The Feed theme includes built-in pages. This guide explains how to customize these pages and manage their navigation links throughout your site.
Built-in Pages Overview
The theme includes these built-in pages:
- Authors (
/authors/
) - Membership (
/membership/
) - Recommendations (
/recommendations/
) - Tags (
/tags/
)
Customizing Page URLs
Follow these steps to customize the URLs of built-in pages:
- Rename the respective template file in your theme folder:
page-authors.hbs
→page-your-new-slug.hbs
page-membership.hbs
→page-your-new-slug.hbs
page-recommendations.hbs
→page-your-new-slug.hbs
page-tags.hbs
→page-your-new-slug.hbs
- Update the page URL in Ghost admin to match your new slug
Managing Navigation Links
The theme includes built-in links to some pages in various templates. You can manage these links through the locales file, but the behavior differs depending on the page type.
Completely Removing Links
Some links can be completely removed from theme templates by setting them to "false"
in /locales/en.json
:
{
"/recommendations/": "false",
"/tags/": "false",
"/authors/": "false"
}
Changing Link URLs
To update the URLs of these links, modify /locales/en.json
:
{
"/recommendations/": "/my-picks/",
"/tags/": "/topics/",
"/authors/": "/team/"
}
Removing Pages
- Delete the corresponding page in Ghost admin
- For non-authentication pages, you can completely remove links using the locales file