# coreos.fedoraproject.org **Repository Path**: mirrors_coreos/coreos.fedoraproject.org ## Basic Information - **Project Name**: coreos.fedoraproject.org - **Description**: Old coreos.fedoraproject.org website (deprecated) - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-08-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Fedora CoreOS Welcome to the site for Fedora CoreOS. This site features announcements and news around Fedora CoreOS, 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. 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: --- ``` Please pay attention to the `categories: [blogs]` section. Currently, these categories are available: `[blogs]`, `[talks]` 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? ```