Skip to content

Commit a597590

Browse files
committed
[website] Add unpopulated blog to website
Add a blog section to the website. This is intended to be used to better communicate rationale, motivation, and just general information about Chisel and new features. Specifically, we'd like to use this to provide a easier introduction to what layers and probe are (as a first step!). Signed-off-by: Schuyler Eldridge <[email protected]>
1 parent 4c8efa9 commit a597590

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

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)