Skip to main content

Basic Setup

Courses page

Creating the listing page

Open Ghost admin, then go to Pages and create a new page. Give the page a title, then open the page settings, and change the page URL (slug) to courses. You can optionally add a feature image and an excerpt.

If you like the page description to have links, bold or italic text, remove the excerpt completely and add the text directly to the page content, then add your links and styles.

Example of the courses page content. The page URL must be equal to "courses".

After publishing the page, you should see a similar result:

Example of a courses page

Creating a course

Step 1: Creating the course tag

For technical reasons, we need to create a public (not internal) tag for each course. This tag will be used to put the course and its lessons together. The tag's slug will also be part of the lessons' URL.

Open the Ghost admin, then go to Tags and click on the "New tag" button on the top right corner. Then fill in the tag's name (you can just use the course title here). Make sure the slug is correct as it will be part of the lessons' URL, and changing it later will cause SEO issues and require implementing redirects.

Example of a public course tag

Step 2: Creating the course post

  1. Open Ghost admin, then go to Posts and create a new post. Give it a title and fill in the content. Optionally add an excerpt and a feature image.
  2. add the public tag you created previously in the post settings, and make sure it's the primary tag (in Ghost the primary tag is always the first tag).
  3. Next, we need to make this post part of the courses collection so it's displayed on the listing page. To do that add the internal tag #courses-col to the post (internal tags must start with #).
  4. Next, we need to create groups for the course lessons (modules). If you prefer not to group your lessons into modules, you can add the tag #groups-disabled to the post and skip this step.
    • Open the Ghost admin, then go to Tags and click on the "New tag" button on the top right corner.
    • The tag's name must start with #group- plus some unique text (e.g. #group-color-theory-basics, #group-module-1).
    • Next, fill in the tag's description. This is the text that will be visible on the sidebar.
    • Optionally, you can add a longer description by clicking "Expand" on the "Meta data" section, then filling in the "Meta description" field.
    • You can also add upload an icon as the Tag image. A filter is applied to the image to make it work for both light and dark theme. We recommend using a monochrome SVG or transparent PNG. In our demo, we're using duotone icons from the free Phosphor icons pack.
    • Finally, save the tag.
    • Repeat the process for all the groups, then go to your course post and add the tags in the post settings and save the changes. The groups will appear on your course in the same order they appear on the post settings.
Example of a group with icon and meta description
  1. Next, you can add a duration to your course:
    • Open the Ghost admin, then go to Tags and click on the "New tag" button on the top right corner.
    • The tag's name must start with #course-duration- plus some unique text (e.g. #course-duration-1h-30m, ...).
    • Next, fill in the tag's description. This is the text that will be visible on the website.
    • Finally, save the tag, then go to your course post and add the tag in the post settings and save the changes.
Example of a duration tag
To reduce the number of tags, we recommend rounding values as much as possible. Instead of using 32m, 35m, or 38m, use a single tag like 30m or ~30m.
  1. Similarly, you can add a difficulty level by creating a tag that starts with #course-level- (e.g. #course-level-beginner) and adding it to your course post
Example of a difficulty level tag
  1. Finally, you can optionally add a public tag as the course category (remember to keep this tag after the main course tag).

The course settings should look like the following:

Example of a course post. The tags contain the main course tag as the first tag, the courses collection tag #courses-col, group tags, duration and level tags, and finally a regular tag for the category.

After publishing the post, you should see it on the listing page:

The listing page with one published course

The courses will appear in reverse chronological order (newest first). The latest 3 featured courses will be pinned to the top.

At this point clicking on the button "Start Course" will not work, we need to add some lessons to the course first, that's what we'll explain in the next step.

Step 3: Creating the lesson post

  1. Open Ghost admin, then go to Posts and create a new post. Give it a title and fill in the content. Optionally add an excerpt and a feature image.
  2. add the public course tag you created previously in step 1 to the post settings, and make sure it's the primary tag (in Ghost the primary tag is always the first tag).
  3. Next, we need to make this post part of the lessons collection. To do that add the internal tag #lessons-col to the post (internal tags must start with #).
  4. Next, add the group tag (you created in step 2) that this lesson should belong to.
  5. Similarly to the course post, you can add a duration by creating a tag that starts with #lesson-duration- (e.g. #lesson-duration-10m) and adding it to your lesson post
Example of a lesson post. The tags contain the main course tag as the first tag, the lessons collection tag #lessons-col, the tag of the group this lesson belongs to, and a duration tag

After publishing the post, you should see it appear on the course page and on the course sidebar:

Course page with published lessons

Lessons under the same group will appear in chronological order (oldest first). You can adjust the order by changing the "Publish date" on the post settings.

Example of the lesson template
By default, when you visit a course, the URL visible on the browser is /courses/<course slug>/ e.g. /courses/the-fundamentals-of-color-theory/

When you visit a lesson, the URL is /courses/<primary tag slug>/<lesson slug>/ e.g /courses/the-fundamentals-of-color-theory/colors-in-advertising/

That is why it is important to use the same value for the course slug and the primary course tag slug, to keep the URL consistent between the course and lessons.