Install the theme
Follow the steps below to upload the theme:
- Log in to your publication admin section at
yoursite.com/ghost/
- Go to Settings > Design (
yoursite.com/ghost/#/settings/design/
) - Click Change theme (
yoursite.com/ghost/#/settings/design/change-theme
) - Click Upload theme and select the
saaga.zip
file. - After the upload is complete, under Installed themes click Activate
Routes setup
Caution
For the theme to function properly you must upload the routes.yaml
file.
The file is located inside the saaga.zip
Follow the steps below to upload the routes.yaml
file (this is a separate step from theme upload)
- Log in to your publication admin section at
yoursite.com/ghost/
- Go to Settings > Labs (
yoursite.com/ghost/#/settings/labs
) - Under Beta features click on Upload routes file button and select the file from the root directory of the theme.
This is a testing ground for new or experimental features. They may change, break or inexplicably disappear at any time.
more info in the docs
Custom settings
The theme comes with custom design settings, which are accessible from the Ghost Admin panel.
To view and edit these settings go to Settings > Design & Branding ( yoursite.com/ghost/#/settings/design/
)
Custom settings are defined in the package.json
file.
These settings are placed under three categories:
- Site-wide settings
- Homepage settings
- Post settings
Here's a preview of the available settings:
Homepage
The homepage is defined in the home.hbs
file. The following sections are part of this template:
- hero section
- featured stories
- featured topics
- latest stories
Hero
The hero section is completely customizable from Settings > Design > Homepage, with the following options:
-
Hero style - the hero section style and the cover image style
The following options are available:
accent-background
- default option: no image, and the background color is your brand colorimage-background
- the cover image in the backgroundimage-bottom
- the cover image below the hero title & descriptionimage-right
- the cover image next to the hero title & descriptionno-image
- the cover image isn't displayed
-
Hero headline
- the hero section title
- the title can highlight specific words by using
<em>
elements, for example:
Tell your <em>stories</em> in the most <em>compelling</em> and <em>visual</em> way.
-
Hero description
- the hero section description
- here you can also use HTML elements like links, bold text, etc:
-
Hero button text
- the hero section button text
- if you leave this option empty there will be no button
-
Hero button link
- the hero section button link
- you can set a custom link to go with your button text
- the default option is
subscribe-form
, with this option you get the Ghost subscribe form for collecting members
Featured stories
There are three options you can choose from for your featured posts:
colored-list
- all featured posts will be listed one after the other
For this option the background color is dynamically changed as you scroll the page. Each post will set its own background color with the color being taken from the first tag assigned to the post (tag accent color).
Additionally, the feature image has a special effect on hover, if you want to disable this effect, add the following in Code Injection:
<script>themeGlobal.featuredImageAnimation = false;</script>
-
list
- the featured posts will be listed one after the other in a simple minimal way. -
slider
- all featured posts will be rendered within a slider element, with buttons for navigating through the list -
none
- there will be no featured posts section in this case
Note
Featured posts are still listed under the latest stories section. If you want to remove them from the latest section you can either use CSS to hide such posts, or set up a filter in the routes file.
Featured topics
Add the tag slugs you want to appear in "Stories about" section. The tags have to be separated by commas and no spaces, no comma after the last item.
Caution
Do NOT use the tag names, but the tag slugs.
Note
You can find the slug of a tag in your Admin > Tags, opening a specific tag and check the Slug field.
Example from the demo:
moon,venus,jupiter,mars,neptune,uranus,saturn,earth,galaxy
For the tags to appear, they have to be assigned to at least 1 post, and the order is exactly the order of your input.
Post feed
The post feed displays the articles ordered by the published date. The layout and design of the post feed can be set from Settings > Design > Homepage > Post feed style with the following options:
- alternating-list - latest posts listing in an alternating format, on one item the image is on the left and on the next the image is on the right. Demo ->
- grid - latest posts in grid format. Demo 2 -> & Demo 5 ->
- list - latest post in a simple list format. Demo 3 ->
Post card
The post card markup is defined in partials/post-card.hbs
.
The post card image aspect ratio can be changed from Settings > Design > Homepage > Post card image aspect ratio
with the following option:
auto
- the uploaded image aspect ratio will be respected16/9
aspect ratio4/3
aspect ratio1/1
aspect ratio3/4
aspect ratiohidden
- image will not be displayed
Custom templates
The default post layout is can be set from the Design settings > Post, this
defined by the post.hbs
template and the default page layout is defined by the
page.hbs
template.
The theme comes with several custom templates, which can be selected for individual posts from the Post/Page Settings menu:
custom-with-excerpt-on-the-side.hbs
- template with excerpt on the right sidecustom-with-full-background-image.hbs
- template with feature image in the backgroundcustom-with-image-on-the-side.hbs
- template with image on the right sidecustom-with-narrow-image.hbs
- template with a narrow feature imagecustom-with-wide-image.hbs
- template with a wide feature image
Note
Custom templates can be selected for both Posts and Pages. Pages use a simplified version of the templates (no authors, read next or comments) Custom pages do not use these templates, as those have their own template.
Post elements
In posts the hero displays post and author information, then at the end of the articles there are other elements like:
- social sharing
- author box (info about the primary author)
- comments section
- read next section for related articles
Additionally, if can enable the image lightbox by adding the following line in Code Injection:
<script>themeGlobal.imageLightbox = true;</script>
Custom Pages
As explained in the routes setup, the theme comes with a couple of custom pages, to activate these pages, there are some actions you have to take.
Caution
Uploading the routes.yaml
file is a key requirement for these custom pages.
By default, that is the only requirement, but if you want even more control over
the pages then you should activate the data
property (remove the #
symbol in front of the data property in the routes.yaml
file)
and create the page with the correct slug.
To create a Page:
- Log in to your publication admin section at
yoursite.com/ghost/
- Go to Pages (
yoursite.com/ghost/#/pages/
) - Click New page and set the Title and Page URL
- Finally, click Publish
Note
The data property can be used to make templates dynamic that otherwise would be static.
Archive
Defined by the archive.hbs
template, renders articles in chronological order and grouped by month (by the Published Date).
If you want to control the meta properties for this page, you have to activate the
data
property, by removing the #
symbol in the routes.yaml
file.
/archive/:
controller: channel
template: archive
# data: page.archive # When active data will be taken from the "/archive/" page
Authors
Defined by the authors.hbs
template, renders all authors ordering them by the number of posts.
If you want to control the meta properties for this page, you have to activate the
data
property, by removing the #
symbol in the routes.yaml
file.
/authors/:
template: authors
# data: page.authors # When active data will be taken from the "/authors/" page
Tags
Defined by the tags.hbs
template, renders all tags ordering them by the number of posts.
If you want to control the meta properties for this page, you have to activate the
data
property, by removing the #
symbol in the routes.yaml
file.
In this case, you also need to create a page in the Admin with the tags
slug.
/tags/:
template: tags
# data: page.tags # When active data will be taken from the "/tags/" page
Membership
Defined by the membership.hbs
template, renders all tiers with price and benefits.
Tip
The membership tier names, prices, and benefits can all be changed in the
Admin, by going to Settings > Membership ( /ghost/#/settings/members
).
Edit existing tiers or add new ones under the Membership Tiers section.
If you want to control the meta properties for this page, you have to activate the
data
property, by removing the #
symbol in the routes.yaml
file.
/membership/:
template: membership
# data: page.membership # When active data will be taken from the "/membership/" page
If you activated the data property, you also have to create the page with the membership
slug.
To use different colors for the your tiers, you can add the following in Code Injection:
<style>body { --color-tier-2: #bfa7ff; --color-tier-3: #4a91f8; }</style>
Signup
Defined by the signup.hbs
template.
If you want to control the meta properties for this page, you have to activate the
data
property, by removing the #
symbol in the routes.yaml
file.
/signup/:
template: signup
# data: page.signup # When active data will be taken from the "/signup/" page
If you activated the data property, you also have to create the page with the signup
slug.
Additionally, the feature image of this page will appear on the side.
Signin
Defined by the signin.hbs
template.
If you want to control the meta properties for this page, you have to activate the
data
property, by removing the #
symbol in the routes.yaml
file.
/signin/:
template: signin
# data: page.signin # When active data will be taken from the "/signin/" page
If you activated the data property, you also have to create the page with the signin
slug.
Additionally, the feature image of this page will appear on the side.
Account
Defined by the account.hbs
template.
If you want to control the meta properties for this page, you have to activate the
data
property, by removing the #
symbol in the routes.yaml
file.
/account/:
template: account
# data: page.account # When active data will be taken from the "/account/" page
If you activated the data property, you also have to create the page with the account
slug.
Color customization
You can change the main accent color from Settings > Design > Brand. The most important CSS configurations of the theme are defined as custom CSS properties, so you can easily overwrite them from Code Injection to change background colors, text colors, and more.
The theme comes with light and dark color schemes (and system), the default one can be set in the admin using the Default color scheme in Settings > Design > Site-Wide.
The included color schemes:
- light
- dark
The default option is system
which will be either the dark
or light
theme,
depending on the user's preference.
It's possible to change the color schemes by changing the properties. This can be done by adding the following in Code Injection and adjusting the values.
To change the light theme:
<style>
:root {
/* color configuration */
--color-text: hsl(0 0% 15%);
--color-text-acc: hsl(0 0% 25%);
--color-text-reverse: hsl(0 0% 85%);
--color-bg: hsl(0 100% 100%);
--color-bg-acc: hsl(0 0% 97%);
--color-bg-reverse: hsl(0 0% 15%);
--color-bg-base: 0 0% 100%;
--color-bg-base-reverse: 0 0% 0%;
--color-neutral: hsl(0 0% 50%);
--color-border: hsl(0 0% 92%);
}
</style>
To change the dark theme:
<style>
html[data-color-scheme='dark'] {
--color-text: hsl(0 0% 85%);
--color-text-acc: hsl(0 0% 75%);
--color-text-reverse: hsl(0 0% 15%);
--color-bg: hsl(0 100% 100%);
--color-bg-acc: hsl(0 0% 97%);
--color-bg-reverse: hsl(0 0% 15%);
--color-bg-base: 0 0% 100%;
--color-bg-base-reverse: 0 0% 0%;
--color-neutral: hsl(0 0% 50%);
--color-border: hsl(0 0% 20%);
}
</style>
Some useful tools for choosing colors and gradients:
You can even define your color schemes, but that would require changing the theme files. Steps to define new color schemes:
- Change the package.json file, adding a new option under the
color_scheme
property. - Add the new color scheme to the dropdown editing the
partials/color-scheme-dropdown.hbs
- Add the CSS, either in Code Injection (using the previous code blocks as a template) or in the CSS files.
For example, here's a purple accent color configuration:
<style>
:root {
/* Purple accent configuration */
--color-text: hsl(275 50% 15%);
--color-text-acc: hsl(275 50% 25%);
--color-text-reverse: hsl(275 50% 85%);
--color-bg: hsl(275 50% 96%);
--color-bg-acc: hsl(275 50% 92%);
--color-bg-reverse: hsl(275 50% 15%);
--color-bg-base: 275 50% 100%;
--color-bg-base-reverse: 275 50% 0%;
--color-neutral: hsl(275 50% 50%);
--color-border: hsl(275 50% 92%);
}
</style>
Similar configuration for the dark theme:
<style>
html[data-color-scheme='dark'] {
--color-text: hsl(275 50% 85%);
--color-text-acc: hsl(275 50% 75%);
--color-text-reverse: hsl(275 50% 15%);
--color-bg: hsl(275 50% 4%);
--color-bg-acc: hsl(275 50% 8%);
--color-bg-reverse: hsl(275 50% 15%);
--color-bg-base: 275 50% 100%;
--color-bg-base-reverse: 275 50% 0%;
--color-neutral: hsl(275 50% 50%);
--color-border: hsl(275 50% 20%);
}
</style>
Syntax Highlighting
The theme comes with prism.js integration by default,
to activate syntax highlighting just add the internal tag #syntax-highlight
to your post.
Why is this necessary? In short, for performance. To avoid loading the library when it's not necessary. If you don't add the tag, the library will not load at all.
If you are someone who shares code regularly and wants to have the plugin on all
your posts, without having to add the tag, you can do so by changing the
partials/syntax-highlight.hbs
file. Simply remove the condition checking for the tag.
Additionally, in this partial file, it's defined which version of the prism library is loaded as well as the components, languages, and theme. So you can easily customize it, add new languages, or a different code highlighting the theme without having to go into theme development.
Font options
You can set the font family from the Admin section, separately for headings and body, going to Settings > Design > Site-wide and under Font headings and Font body select one of the options.
Options for the heading font:
- Sora
- Inter
- Archivo
- Syne
- Open Sans
- Playfair Display
- Space Grotesk
- Red Rose
- JetBrains Mono
- System - no requests to Google fonts
Options for the body font:
- Inter
- Open Sans
- Classic
- Humanist
- Geometric
- Neo Grotesk
- System - no requests to Google fonts
Tip
With the System font option, you can avoid requests to the Google servers in case GDPR is a concern.
If you still want to use Google fonts and want to self-host the font files check out this guide for self-hosting Google Fonts.
Logo
The publication logo is used for both the header and footer elements. The same logo is used for both light and dark themes, however, you can use filters for changing how the logo looks in certain scenarios.
- Reduce the brightness of the logo for the homepage only:
<style>.home-template .header__logo { filter: brightness(0); }</style>
- Increase the brightness and contrast for the dart theme only:
<style>[data-color-scheme="dark"] .header__logo { filter: brightness(10); contrast(200%); }</style>
- Change the footer logo color with hue-rotate:
<style>.footer-logo { filter: hue-rotate(90deg); }</style>
- Invert the footer logo color for the light theme only:
<style>[data-color-scheme="light"] .footer-logo { filter: invert(1); }</style>
Note
Here is the complete list of filters you can apply. You can use multiple filters at the same time.
Dropdown menus
saaga comes with a custom feature to create
dropdown menus easily for your header navigation. All you have to do is add the
minus sign (-
) in front of the items in Settings > Navigation
Items having the -
sign will be added as subitems to the previous navigation item.
For example from the demo:
- Membership
,- Sign up
and- Sign in
will belong to the Members item
Ghost config
Some configurations in Ghost themes can be defined in the package.json
file, including
Posts per page, Image sizes, and Custom settings.
Posts per page
The posts_per_page
defines the number of posts that appear in your collections until it's paginated.
For example, the value of posts_per_page
is used on the home page, tag, and author templates.
You can change it in the package.json
file:
"config": {
"posts_per_page": 12
}
Image sizes
Ghost can handle responsive image sizes,
and this is defined in the package.json
file, under the image_sizes
property.
You can change the default configuration by editing this file before uploading the theme.
"image_sizes": {
"xxs": {
"width": 30
},
"xs": {
"width": 100
},
"s": {
"width": 320
},
"m": {
"width": 640
},
"l": {
"width": 960
},
"xl": {
"width": 1280
},
"xxl": {
"width": 2000
}
}
The sizes defined will be used to generate copies of images at the specified sizes when uploading images in your Ghost Admin.
Comments
The theme uses the native Ghost comment feature. The Native Comment System requires at least Ghost v5.9.0, you have to enable it from Settings > Membership > Access > Commenting.
Here are the options you can choose from:
All members
- Logged-in membersPaid-members only
- Only logged-in members with an active subscriptionNobody
- Disable commenting completely
Icons
The icons used in the theme are from Tabler Icons, the library consists of 5000+ icons.
Only the icons used in the theme are included in the partials/icons
directory
in separate .hbs
files.
Here are the steps to add new icons:
- Go to Tabler Icons and click on the Icon you want to add, this will copy the code to your clipboard.
- Go into the
partials/icons
directory and create a new file:your-icon.hbs
- Open the new file and paste the copied code from the clipboard.
- Save the file.
For using the icons inside the theme files, there is a special partial file
partials/icon.hbs
which accepts name and size as parameters.
Let's see an example and try to add a new icon. Assuming we want to add the icon
camera
and by clicking on the icon on the website, we get this code:
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-camera" width="24" height="24" viewBox="0 0 24 24" strokeWidth="1.5" stroke="#2c3e50" fill="none" strokeLinecap="round" strokeLinejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M5 7h1a2 2 0 0 0 2 -2a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9a2 2 0 0 1 2 -2" />
<circle cx="12" cy="13" r="3" />
</svg>
The next step is to create a new file: partials/icons/camera.hbs
and paste the copied code in the file.
The new file must be of .hbs
type, so we can use it into the theme files:
{{>icon name="camera"}}
Social links
Social links are shown in the footer and by default, the theme comes with:
- Facebook (Settings > General > Social accounts)
- Twitter (Settings > General > Social accounts)
- RSS
To add other links you need to edit the partials/social-links.hbs
file.
There are several other links in there already, you just have to uncomment
the relevant parts and add your link in the href
attribute.
Social sharing
Social sharing is part of the post layout and the following is included:
- X(Twitter)
- Copy to clipboard
To add other social sharing options you need to edit the partials/social-share.hbs
file.
Translations
By default, everything is in English (en.json
), additionally, the theme comes with translations in:
- 🇩🇪 German (
de.json
) - 🇪🇸 Spanish (
es.json
) - 🇫🇷 French (
fr.json
) - 🇮🇹 Italian (
it.json
) - 🇳🇱 Dutch (
nl.json
) - 🇵🇹 Portuguese (
pt.json
)
Note
For a translation to apply, you have to set the language in Settings > General Settings > Publication language.
If you want to edit the translation in a specific language, you have to edit the corresponding translation file.
The files are stored in the locales
directory (inside the theme zip).
|__ locales
| |__ de.json
| |__ en.json
| |__ es.json
| |__ fr.json
If the language file for your language doesn't exist, you have to create it (make sure to use the correct language code)
The best way is to copy the content en.json
file in your new language file, then change the translations.
Theme development
If you want to make more advanced changes to the theme, or you want to develop your components, the theme comes with a developer-friendly setup. You can take advantage of the Gulp tasks that are set up for compiling Javascript and PostCSS.
All the assets are combined and minified for better speed and performance. To customize the theme make sure you have Node.js and npm installed.
Follow the official guide for installing Ghost locally.
After you have installed Ghost and put the theme directory inside the content/themes/
directory, run the following commands in the theme directory:
npm install
This will install all the dependencies for the theme
Then run:
gulp
This will compile PostCSS and javascript and will watch for changes. So when you edit a .hbs
, .css
or .js
file the change will trigger the gulp watch
task and this will compile the assets whenever you change a file.
If you want to compile just CSS:
gulp css
If you want to compile just JS:
gulp js