Tags & authors page
Creating the tags page
Open Ghost Admin, go to Pages, and create a new page. Give it a title, then open the page settings and change the page URL (slug) to tags
. You can optionally add a feature image and an excerpt.
If you want the page description to include links or formatted text (bold, italic, etc.), remove the excerpt entirely and instead add the text directly in the page content, applying your links and styles there.
Creating the authors page
Open Ghost Admin, go to Pages, and create a new page. Give it a title, then open the page settings and change the page URL (slug) to authors
. You can optionally add a feature image and an excerpt.
If you want the page description to include links or formatted text (bold, italic, etc.), remove the excerpt entirely and instead add the text directly in the page content, applying your links and styles there.
Migrating from Bright v1.x.x
If you haven’t made any changes to the default routes.yaml
file before, you can simply upload the new file included with v2.0.0 to Settings > Labs > Routes and skip the rest.
If you have previously modified the default routes.yaml
:
- Go to Settings > Labs > Routes in Ghost.
- Click "Download current routes".
- Open the downloaded file in a text editor.
- Add the new
tags
andauthors
pages underroutes:
(not undercollections:
) .
routes:
/rss/:
template: rss
content_type: text/xml
/contact/:
template: contact
data: page.contact
/tags/:
template: tags
data: page.tags
/authors/:
template: authors
data: page.authors
collections:
# ...
- Save the file and upload it to Settings > Labs > Routes by clicking "Upload routes file"
ghost restart