Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/openslo/openslo.github.io
The source code of
https://github.com/openslo/openslo.github.io
Last synced: about 2 months ago
JSON representation
The source code of
- Host: GitHub
- URL: https://github.com/openslo/openslo.github.io
- Owner: OpenSLO
- License: apache-2.0
- Created: 2021-05-11T19:15:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-22T16:08:37.000Z (9 months ago)
- Last Synced: 2024-03-23T14:55:21.798Z (9 months ago)
- Language: Sass
- Homepage: https://openslo.com/
- Size: 810 KB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# The OpenSLO homepage source code
Everything that has been committed to the `main` branch is published automatically to [openslo.com](https://openslo.com/).
The website is built with [HUGO](https://gohugo.io/). To run it locally execute
```sh
hugo server
```to update it just create a PR and merge it to the `main` branch.
This website contains a blog section, everybody interested in SLO, SRE, OpenSLO, etc. is welcome to write articles.
The flow is the same as for regular contributions, review will be made in a PR.For something more complicated or when you are in doubt please create an issue first to gather feedback.
## Creating a blog post
Please follow while creating a new post on our blog:
1. Create a file with the name of the post
```sh
hugo new blog/{post-name}.md
```
2. In path /content/posts you'll find your newly created file
3. Please add in the front matter variable called `cover` with a value pointing to the cover image of your post. You can link an image or use one which should be placed in `/assets` directory.
4. Write your post
5. If you finished your work change `draft` value to `false`Example front matter for the post
```yaml
title: "Hello world!"
date: 2022-08-18T13:00:42+02:00
draft: false
cover: /images/openslo_logo.svg
```
5. Thanks for your contribution!