Blog

Blogging Process

Content creation and blogging are an effective way to communicate with our community. The process for publishing a blog is as follows:

  1. Raise an issue for the content in our private Github repository.
  2. If the content is date specific create an 'all day' event on the Google Calendar FlowForge Publishing Schedule, include a link to the issue in the event description. If you don't have the permission to create events please ask our Google Workspace admin to give you access.
  3. If you want to work on the content immediately please triage the issue into our development board.
  4. Create the draft blog post in a Google Doc. The document should be stored in the Marketing -> Content folder. Everyone at FlowForge should be given access to comment on the document. Add a link to the document in the GitHub issue.
  5. Ask people to review the document draft by sharing it directly with them using the Share button in the document. This will send your reviewers an email notification.
  6. As a document reviewer, you should leave red-line edits in the document or add comments to the document.
  7. Once the document is finished, create a new branch of the website repository and then follow our standard development processes. Google Docs has an extension to convert the document to markdown.
  8. It is OK for you to merge your own PR to main without review where the content is urgent or has been reviewed outside of Git but where it is practical to follow the standard process we encourage you to do so.

Blog CMS

When creating a blog post there are several headers which are used by the CMS to populate the blog article as well as the blog index page. The headers are as follows:

Title

The title of the page can be seen on both the blog index and the articles.

Subtitle

The subtitle is only shown on the articles.

Description

The description is unused currently

Date

The data can be seen on both the blog index and the articles.

Authors

The author can be seen on both the blog index and the articles.

More tag

The '<!--more-->' tag is used to define the text shown in the blog index from each article.

Example header content

---
title: The title
subtitle: The subtitle
description: The description
date: 2022-12-20
authors: ["rob-marcer"]
---

above more
<!--more-->
below more

Example blog index item based on the header above

Example of how the headers are shown on the blog index

Example blog article based on the header above

Example of how the headers are shown on blog articles