From 2432abd37998a9cef2881d83437ba385bf01c60a Mon Sep 17 00:00:00 2001 From: Anbraten Date: Tue, 11 Jul 2023 23:31:45 +0200 Subject: [PATCH] Add a blog (#1978) Co-authored-by: Patrick Schratz --- docs/blog/2023-06-11-hello-blog/index.md | 23 +++++++++++++++++++++++ docs/docusaurus.config.js | 7 +++++++ 2 files changed, 30 insertions(+) create mode 100644 docs/blog/2023-06-11-hello-blog/index.md diff --git a/docs/blog/2023-06-11-hello-blog/index.md b/docs/blog/2023-06-11-hello-blog/index.md new file mode 100644 index 000000000..61d205caa --- /dev/null +++ b/docs/blog/2023-06-11-hello-blog/index.md @@ -0,0 +1,23 @@ +--- +title: Welcome Woodpecker's blog +description: This our first post on Woodpecker. +slug: hello-blog +authors: + - name: Anbraten + title: Maintainer of Woodpecker + url: https://github.com/anbraten + image_url: https://github.com/anbraten.png +tags: [hello, woodpecker] +image: https://i.imgur.com/mErPwqL.png +hide_table_of_contents: false +--- + +Welcome to this blog. This is our first post on this blog ... + + + +In the future we will post about our releases and other things like tutorials. + +We are currently working on the `1.0.0` release of Woodpecker. This release will include a lot of new features and improvements which most of you probably already tested using the `next` tag. + +If you have any suggestions or ideas for posts, feel free to open an issue in the [GitHub repository](https://github.com/woodpecker-ci/woodpecker). diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 17d786adb..1f6f87bbc 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -58,6 +58,7 @@ module.exports = { position: 'left', label: 'API', }, + { to: 'blog', label: 'Blog', position: 'left' }, { type: 'docsVersionDropdown', position: 'right', @@ -223,6 +224,12 @@ module.exports = { }, }, }, + blog: { + blogTitle: 'Docusaurus blog!', + blogDescription: 'A Docusaurus powered blog!', + // postsPerPage: 'ALL', + // blogSidebarCount: 0, + }, theme: { customCss: require.resolve('./src/css/custom.css'), },