https://github.com/containers/buildah.io
Repository for the buildah.io web site using GitHub Pages.
https://github.com/containers/buildah.io
Last synced: about 2 months ago
JSON representation
Repository for the buildah.io web site using GitHub Pages.
- Host: GitHub
- URL: https://github.com/containers/buildah.io
- Owner: containers
- License: other
- Created: 2018-09-10T14:01:38.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2023-12-20T15:02:12.000Z (about 2 years ago)
- Last Synced: 2024-03-04T20:10:24.560Z (almost 2 years ago)
- Language: HTML
- Homepage: https://buildah.io
- Size: 563 KB
- Stars: 27
- Watchers: 7
- Forks: 17
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE-OF-CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Container Tools
Welcome to the site for [Buildah](https://github.com/projectatomic/buildah/blob/main/README.md). This [site](https://containers.github.io/buildah.io) features announcements and news around Buildah, and occasionally other [container tooling](https://github.com/containers/) news.

## Website Contributors
The website runs on GitHub Pages via [Jekyll](https://jekyllrb.com/) to make it as convenient as possible for you to contribute.
Before you start, please verify that you've an entry for yourself in the top level _config.yml file in the
`authors` section. Your entry should look like the following example. Please note if you do not have a gravatar, a twitter account or simply don't want to share a particular field, just leave the field blank or completely remove the particular line.
```
jsmith:
name: Jessica Smith
display_name: Jessica Smith
gravatar: c69c8419c8e4d1bbedc7874281453781
email: jsmith@mycompany.com
web: https://mywebsite.com
twitter: JSmithOnTwitter
github: JSmithOnGitHub
```
You can add blog posts by adding a file to the `_posts` folder. The file must use the following naming convention: `yyyy-mm-dd-relevant-title-here.md`. In the file itself, you will need to start with the following metadata:
```
---
title:
layout: default
author:
categories: [blogs]
tags:
---

{% assign author = site.authors[page.author] %}
# My Blog Title
## By {{ author.display_name }} [GitHub](https://github.com/{{ author.github }}) [Twitter](https://twitter.com/{{ author.twitter }})
```
Please pay attention to the `categories: [blogs]` section. Currently, there are 3 categories available: `[blogs]`, `[releases]`, and `[new]`.
**NOTE:** If you want to add a ':' (colon) to your title, you will need to instead use `:`, otherwise the post will not be displayed on the index page. For example:
```
Instead of:
title: My first blog post: Can you believe it?
use:
title: My first blog post: Can you believe it?
```
# New 'main' branch
To be more inclusive, the `master` branch for this repository has been renamed to `main`. If you have a local clone, you can update it by running:
```
git branch -m master main
git fetch origin
git branch -u origin/main main
git remote set-head origin -a
```