-
Create a new file in
_posts/
namedYYYY-MM-DD-short-title.md
. You can use the contents of_posts/template.md
as an example. -
Ensure the frontmatter includes
state: active
. -
Set the
severity:
based on the table below.
Severity | Output |
---|---|
0 | All systems are operating normally. |
1 | There are one or more service interruptions. |
2 | There is a critical service outage. |
- Commit and push your changes.
To mark a status entry as "resolved" (which will remove it from the
"Current status" section), edit the file in the _posts
directory and
remove the state: active
setting.
Build the container image:
podman build -t pages .
Serve the site:
podman run -d --name pages --rm --userns keep-id -v $PWD:/pages -p 4000:4000 pages
Visit https://localhost:4000 in your browser. If you make changes to
_config.yml
, you will need to restart the pages
container:
podman restart pages
Changes to regular files will cause the site to be re-rendered automatically.
This repository is based on Jekyll Now, by Barry Clark, and inherits the MIT license from that project.