This is the source for our orderly changelog, it will be deployed to https://reside-ic.github.io/orderly-news
This needs a recentish version of hugo (at least 0.83), which might not get on with the current reside blog. The version in apt is probably too old, but snap works (sudo snap install hugo --channel=extended
)
git clone --recursive [email protected]:reside-ic/orderly-news
hugo new posts/<title>
This will create a .md file in content/posts
which you should edit.
The front matter options that might be useful:
---
title: "Add a title here"
date: 2022-10-20T13:51:48+01:00
tags: ["Feature"]
version: ["orderly v0.1.4"]
---
Please include a tag in your post header using tags: ["Feature"]
. Please use one of the following tags:
- Feature - a new feature that users have asked for or will notice
- Update - a smaller update to something in the UI, or a less user facing update change, or a change to logic
- App - a whole new app type
Include a version with the version
field (e.g., version: ["orderly v0.1.4"]
).
hugo serve
Visit http://localhost:1313/orderly-news/ to see changes, editing the file will reflect immediately