No description
Find a file
2025-02-25 14:37:23 +01:00
.github/workflows workflows: Update actions and image 2024-05-16 14:27:25 +02:00
archetypes archetypes: Improve template 2021-11-25 12:09:54 +01:00
content/posts small fixes 2025-02-25 14:37:23 +01:00
data initial setup 2024-12-29 20:37:23 +01:00
layouts Add Hugo site skeleton 2021-09-18 12:37:33 +02:00
static content: Reorganize posts 2022-02-23 21:19:07 +01:00
themes/hugo-geekblog hugo-geekblog 0.27.0 2024-05-16 13:44:54 +02:00
.gitignore parallel rust: introduction, language 2025-01-07 17:43:59 +01:00
config.toml config: Add keywords 2021-12-20 10:17:06 +01:00
README.md README: Add CI badge 2022-07-04 20:39:51 +02:00

ParCIO Blog

CI

The ParCIO blog is generated using Hugo.

Create New Post

Use the following command to create a new post. YYYY should be replaced by the current year and MM should be replaced by the current month.

$ hugo new posts/YYYY/MM/short-title/index.md

The post template already includes some common boilerplate. For everything else, please take a look at the existing posts; their souce can be found in content/posts.

Resources such as code, images etc. should be put in the post's directory.

Create New Author

If you have not published a post yet, you will have to create your author metadata. Author handles usually follow the format firstname.lastname. To set everything up, please create a new file called data/authors/firstname.lastname.yml with the following content:

name: Firstname Lastname

Preview Locally

Hugo supports starting a local webserver for preview purposes using the following command.

$ hugo server