Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/caicloud/cyclone-website
Source for the Cyclone website https://cyclone.dev
https://github.com/caicloud/cyclone-website
ai-pipeline ci-cd continuous-delivery continuous-integration dag documentation kubernetes website workflow
Last synced: 2 months ago
JSON representation
Source for the Cyclone website https://cyclone.dev
- Host: GitHub
- URL: https://github.com/caicloud/cyclone-website
- Owner: caicloud
- Created: 2019-05-07T03:04:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-10-06T05:08:46.000Z (over 2 years ago)
- Last Synced: 2024-04-13T16:05:55.729Z (9 months ago)
- Topics: ai-pipeline, ci-cd, continuous-delivery, continuous-integration, dag, documentation, kubernetes, website, workflow
- Language: CSS
- Size: 666 KB
- Stars: 1
- Watchers: 7
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cyclone-website
### Before posting an article
#### ```_posts``` directory
|------------------
|----...
|----_posts(The article is placed in this directory)
|----...To create a post, add a file to your ```_posts``` directory with the following format:
```
YEAR-MONTH-DAY-title.md
```
The beginning of the contents of the ```.md``` file need to be as follows:```
---
layout: post
title: "The name of your article"
date: "2019-05-07 14:50:10 +0800"
author: "your name"
categories: cyclone
cover: /assets/images/f1.png
summary: "As far as the design of the current page is concerned, the content here cannot be empty."
---
```
And **cover** is the article cover picture, you can consider the following two forms:1. Put the picture in the ```assets/images/``` directory, which means that the **cover** needs to be written as ```/assets/images/XXX```
2. Use URL directly### Running project
1. Environment installation :[https://jekyllrb.com/docs/installation/](https://jekyllrb.com/docs/installation/)
2. Run command: jekyll server
3. More: [jekyll](https://jekyllrb.com/docs/)、[jekyll-guide](https://gist.github.com/biezhi/f88be58ef4ae0f3741bb36ab8daa53c5)