Skip to Content
DocsFeedCustom Pages URLs

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:

  1. Rename the respective template file in your theme folder:
    • page-authors.hbspage-your-new-slug.hbs
    • page-membership.hbspage-your-new-slug.hbs
    • page-recommendations.hbspage-your-new-slug.hbs
    • page-tags.hbspage-your-new-slug.hbs
  2. Update the page URL in Ghost admin to match your new slug

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.

Some links can be completely removed from theme templates by setting them to "false" in /locales/en.json:

{ "/recommendations/": "false", "/tags/": "false", "/authors/": "false" }

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