Routing in Ghost can be a bit quirky. For Magic Pages's Berlin theme, I have created a routes.yaml
that sets a dedicated page with the slug home
as your home page.
You can either copy the following code into a .yaml
file or download the one below.
routes:
/:
data: page.home
template: home
collections:
/blog/:
permalink: /blog/{slug}/
template: index
taxonomies:
tag: /tag/{slug}/
author: /author/{slug}/
The purpose of this "home" page is to provide an easy way to control the about section of your theme. The content of this newly created page will be displayed in the section. If you also want to add a picture of yourself, upload it as a cover image to that page.