Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/salt-labs/website
The Salt Labs static website
https://github.com/salt-labs/website
hugo saltstack
Last synced: 17 days ago
JSON representation
The Salt Labs static website
- Host: GitHub
- URL: https://github.com/salt-labs/website
- Owner: salt-labs
- License: other
- Created: 2023-02-16T09:15:31.000Z (almost 2 years ago)
- Default Branch: trunk
- Last Pushed: 2024-03-30T13:17:49.000Z (9 months ago)
- Last Synced: 2024-11-05T12:03:05.705Z (2 months ago)
- Topics: hugo, saltstack
- Language: HTML
- Size: 76.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Salt Labs Website
This repository contains the source files for [Salt Labs](https://saltlabs.tech)
## How to generate new website content
1. Modify the source files
2. Merge into the trunk branch repo
3. Wait for the GitHub Actions to work it's magic
4. Profit, the website is now available via Cloudflare Workers.## How to add comments
The comments on blog posts are tied to GitHub issues.
For each blog post, create a GitHub issue and add the issue ID to the front matter of the post.
Example post.md
```toml
+++
title = "Interesting blog post"
GitHubIssueId = 1
+++
```Any comments to that GitHub issue are then loaded automatically onto the website.
## Updates
When updating the website don't forget to update the submodules and Cloudflare Workers.
```bash
git submodule update --remotenpm --prefix workers-site update
```