diff --git a/website/blog/2025/01-07-restarting-the-blog/index.md b/website/blog/2025/01-07-restarting-the-blog/index.md new file mode 100644 index 00000000000..0bba573567d --- /dev/null +++ b/website/blog/2025/01-07-restarting-the-blog/index.md @@ -0,0 +1,18 @@ +--- +authors: + - seldridge +tags: [miscellaneous] +slug: restarting-the-blog +description: After a long hiatus, the Chisel developers are restarting the Chisel blog. +--- + +# Restarting the Blog + +It's been many years since the Chisel project had a blog. In the spirit of New +Year's resolutions (and more pragmatically as a means to better communicate with +the open source community about Chisel), the Chisel developers are restarting +the blog. + +In the future look for posts by Chisel users and developers about new features, +the rationale behind existing features, and more communication about the broad +direction of Chisel. diff --git a/website/blog/authors.yml b/website/blog/authors.yml new file mode 100644 index 00000000000..20ef981d93c --- /dev/null +++ b/website/blog/authors.yml @@ -0,0 +1,10 @@ +seldridge: + name: Schuyler Eldridge + title: Principal Engineer at SiFive + url: https://seldridge.dev + image_url: https://github.com/seldridge.png + page: true + socials: + x: theSchuyler + github: seldridge + linkedin: schuylereldridge diff --git a/website/blog/tags.yml b/website/blog/tags.yml new file mode 100644 index 00000000000..dc00b15a079 --- /dev/null +++ b/website/blog/tags.yml @@ -0,0 +1,4 @@ +miscellaneous: + description: "Miscellaneous posts" +release: + description: "Blog posts about new Chisel releases" diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 5966aa899ea..bb92c0f290e 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -90,6 +90,7 @@ const config = { {to: '/docs', label: 'Docs', position: 'left'}, {to: '/community', label: 'Community', position: 'left'}, {to: '/api', label: 'API', position: 'left'}, + {to: '/blog', label: 'Blog', position: 'left'}, { href: 'https://www.chipsalliance.org/', position: 'right', @@ -147,6 +148,10 @@ const config = { label: 'GitHub', href: 'https://github.com/chipsalliance/chisel', }, + { + label: 'Blog', + to: '/blog', + } ], }, ], @@ -208,4 +213,3 @@ const config = { module.exports = config; -