diff --git a/docusaurus.config.js b/docusaurus.config.js index 409295b..d2848f6 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -40,6 +40,18 @@ module.exports = { position: 'right', className: 'navbar__icon navbar__github', }, + { + to: '/community', + label: 'Community', + position: 'right', + className: 'navbar__icon navbar__blog', + }, + { + to: 'https://docs.k3s.io/blog', + label: 'Blog', + position: 'right', + className: 'navbar__icon navbar__blog', + }, { type: 'dropdown', label: 'More From SUSE', diff --git a/src/css/icon_dropdown.css b/src/css/icon_dropdown.css index 7a4eba0..fddc26e 100644 --- a/src/css/icon_dropdown.css +++ b/src/css/icon_dropdown.css @@ -91,4 +91,39 @@ mask-size: cover; height: 15px; padding-bottom: 4px; -} \ No newline at end of file +} + +.navbar__community { + font-size: 18px; +} + +.navbar__community:hover:before { + background-color: var(--ifm-link-color); +} + +.navbar__community:before { + mask: url(/static/img/community-logo.png) no-repeat 100% 100%; + mask-size: cover; + height: 19px; + width: 23px; + padding-right: 2px; + padding-bottom: 6px; +} + + +.navbar__blog { + font-size: 18px; +} + +.navbar__blog:hover:before { + background-color: var(--ifm-link-color); +} + +.navbar__blog:before { + mask: url(/static/img/blog-logo.png) no-repeat 100% 100%; + mask-size: cover; + height: 19px; + width: 23px; + padding-right: 2px; + padding-bottom: 6px; +} diff --git a/src/pages/community.md b/src/pages/community.md new file mode 100644 index 0000000..65475eb --- /dev/null +++ b/src/pages/community.md @@ -0,0 +1,70 @@ +--- +title: Join k3s Community +description: Join k3s Community +hide_table_of_contents: false +--- + +# **k3s** Community! + +## Community Meetings + +We have two community meetings per month: + +Every **Second** Tuesday at 10:00 am PST. +Every **Third** Tuesday at 11:00 am CET. + +Meeting join links can be found on the [Linux Foundation Project Calendar](https://zoom-lfx.platform.linuxfoundation.org/meetings/k3s?view=week). + +We will use this time to communicate project updates, listen to feedback from the K3s community, and collect requirement/use cases for new features. Note: this is not a time to seek technical support or assistance in troubleshooting issues. + +Meeting Minutes notes: https://hackmd.io/@k3s/meet-notes/ + +📺 YouTube Recordings: [K3s YouTube](https://www.youtube.com/@k3sio) + +--- + +## Join Slack - Chat with us on the Rancher Slack + + +Join slack [Rancher Slack](https://slack.rancher.io/) + + +### Channels + +[#k3s](https://rancher-users.slack.com/archives/CGGQEHPPW) - General k3s discussions + +[#k3s-contributor](https://rancher-users.slack.com/archives/CGXR87T8B) - Contribution discussions + +## Follow us! +BlueSky: [k3sio.bsky.social](https://bsky.app/profile/k3sio.bsky.social) + +Mastodon: [@k3sio](https://mastodon.social/@k3sio) + +📺 [YouTube](https://www.youtube.com/@k3sio): https://www.youtube.com/@k3sio + +--- +## Want to contribute to the codebase or documentation? + +Great starting point for new contributors. +### [Good first issue](https://github.com/k3s-io/k3s/labels/kind%2Fgood-first-issue) + +Already contributed? Check where do we need help! +### [Help wanted](https://github.com/k3s-io/k3s/labels/kind%2Fhelp-wanted) + + +If you are ready to jump in and test, add code, or help with documentation, follow the instructions on our [contributing guide](https://github.com/k3s-io/k3s/blob/master/CONTRIBUTING.md) for guidance on how to setup k3s for development. + +You can follow the work we plan to do using the [K3s Roadmap](https://github.com/k3s-io/k3s/blob/master/ROADMAP.md) and see our milestones on our [project board](projectbohttps://github.com/orgs/k3s-io/projects/6ard). You can also follow the state of all issues and [Backlog Board](https://github.com/orgs/k3s-io/projects/5). + +--- + +## K3s Adopters + +If you are adopter and want your logo to be shown here please open PR against: https://github.com/k3s-io/k3s/blob/master/ADOPTERS.md + +[![Rocket Chat](https://cdn.prod.website-files.com/611a19b9853b7414a0f6b3f6/611bbb87319adfd903b90f24_logoRC.svg)](https://www.rocket.chat/)drawing[![Pits](https://www.pitsdatarecovery.com/wp-content/uploads/2024/08/PITS-logo_v2.svg)](https://www.pitsdatarecovery.com/) + +--- + +## Organization Contributing +[![SUSE](/img/suse-logo.png)](https://opensource.suse.com) \ No newline at end of file diff --git a/src/pages/index.js b/src/pages/index.js index 0d918b6..9b26f6d 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -105,8 +105,8 @@ sudo k3s agent --server https://myserver:6443 --token \${NODE_TOKEN}`

Learn More

-

Read the latest SUSE Rancher blog on K3s.

- Blog +

Read the latest K3s blog.

+ Blog

Sign up for the latest "K3s Basics" Online Training.

diff --git a/static/img/blog-logo.png b/static/img/blog-logo.png new file mode 100644 index 0000000..a4de8c5 Binary files /dev/null and b/static/img/blog-logo.png differ diff --git a/static/img/community-logo.png b/static/img/community-logo.png new file mode 100644 index 0000000..1a2bb00 Binary files /dev/null and b/static/img/community-logo.png differ diff --git a/static/img/suse-logo.png b/static/img/suse-logo.png new file mode 100644 index 0000000..7c73fa9 Binary files /dev/null and b/static/img/suse-logo.png differ