Skip to content

Commit a597006

Browse files
authored
Merge pull request #4601 from chipsalliance/dev/seldridge/website-add-blog
[website] Add a blog section and an initial blog post
2 parents 4c8efa9 + 5ac0285 commit a597006

File tree

4 files changed

+37
-1
lines changed

4 files changed

+37
-1
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
authors:
3+
- seldridge
4+
tags: [miscellaneous]
5+
slug: restarting-the-blog
6+
description: After a long hiatus, the Chisel developers are restarting the Chisel blog.
7+
---
8+
9+
# Restarting the Blog
10+
11+
It's been many years since the Chisel project had a blog. In the spirit of New
12+
Year's resolutions (and more pragmatically as a means to better communicate with
13+
the open source community about Chisel), the Chisel developers are restarting
14+
the blog.
15+
16+
In the future look for posts by Chisel users and developers about new features,
17+
the rationale behind existing features, and more communication about the broad
18+
direction of Chisel.

website/blog/authors.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
seldridge:
2+
name: Schuyler Eldridge
3+
title: Principal Engineer at SiFive
4+
url: https://seldridge.dev
5+
image_url: https://github.com/seldridge.png
6+
page: true
7+
socials:
8+
x: theSchuyler
9+
github: seldridge
10+
linkedin: schuylereldridge

website/blog/tags.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
miscellaneous:
2+
description: "Miscellaneous posts"
3+
release:
4+
description: "Blog posts about new Chisel releases"

website/docusaurus.config.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ const config = {
9090
{to: '/docs', label: 'Docs', position: 'left'},
9191
{to: '/community', label: 'Community', position: 'left'},
9292
{to: '/api', label: 'API', position: 'left'},
93+
{to: '/blog', label: 'Blog', position: 'left'},
9394
{
9495
href: 'https://www.chipsalliance.org/',
9596
position: 'right',
@@ -147,6 +148,10 @@ const config = {
147148
label: 'GitHub',
148149
href: 'https://github.com/chipsalliance/chisel',
149150
},
151+
{
152+
label: 'Blog',
153+
to: '/blog',
154+
}
150155
],
151156
},
152157
],
@@ -208,4 +213,3 @@ const config = {
208213

209214

210215
module.exports = config;
211-

0 commit comments

Comments
 (0)