├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ └── governance-review-request.yaml ├── pull_request_template.md ├── settings.yml └── workflows │ ├── updateprojects.py │ └── updateprojects.yml ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── bipoc └── README.md ├── blind-and-visually-impaired └── README.md ├── code-of-conduct.md ├── contributor-growth ├── README.md ├── annual-review-email-template.md └── drafts │ └── crm-runbook.md ├── deaf-and-hard-of-hearing ├── README.md ├── deaf-and-hard-of-hearing-individuals │ └── tips-when-attending-or-speaking-at-a-conference.md └── event-organizers │ └── conference-best-practices.md ├── github-mgmt └── README.md ├── governance ├── README.md ├── assessments │ └── projects │ │ ├── cert-manager │ │ └── 2024-07-22.md │ │ ├── cilium │ │ └── 2023-08-22.md │ │ ├── dapr │ │ └── 2024-10-04.md │ │ ├── flatcar │ │ └── 2023-08-15.md │ │ ├── it-toto │ │ └── 2024-10-31.md │ │ ├── karmada │ │ └── 2023-08-29.md │ │ ├── knative │ │ └── 2025-05-29.md │ │ ├── kserve │ │ └── 2025-03-06.md │ │ ├── kubeedge │ │ └── 2024-06-12.md │ │ ├── pixie │ │ └── 2024-09-27.md │ │ └── wasmedge │ │ └── 2025-02-12.md └── reviews │ ├── handbook.md │ ├── sandbox.md │ └── template.md ├── inclusiveness.md ├── maintainers-circle ├── README.md ├── burnout │ └── README.md └── hosting-guide.md ├── mentoring └── README.md ├── netlify.toml ├── package.json ├── resources.md ├── valued-members.md └── website ├── .gitignore ├── .hugo_build.lock ├── .vscode └── settings.json ├── Dockerfile ├── README.md ├── assets ├── icons │ └── logo.svg ├── js │ └── search.js └── scss │ ├── _about.scss │ ├── _archive.scss │ ├── _buttons.scss │ ├── _cookie-banner.scss │ ├── _footer.scss │ ├── _hamburger.scss │ ├── _header.scss │ ├── _home.scss │ ├── _main.scss │ ├── _nav.scss │ ├── _projects.scss │ ├── _reset.scss │ ├── _search.scss │ ├── _sidebar-left.scss │ ├── _sidebar-toc.scss │ ├── _styles_project.scss │ ├── _taxonomy.scss │ ├── _typography.scss │ ├── _variables_project.scss │ └── _video.scss ├── config.toml ├── content ├── _index.html ├── about │ ├── _index.md │ ├── contributing.md │ ├── featured-background.jpg │ └── working-groups │ │ ├── _index.md │ │ ├── blind-and-visually-impaired.md │ │ ├── contributor-growth.md │ │ ├── deaf-and-hard-of-hearing.md │ │ ├── governance.md │ │ ├── maintainers-circle.md │ │ └── mentoring.md ├── accessibility │ ├── _index.md │ ├── blind-and-visually-impaired │ │ ├── _index.md │ │ └── using-slack-with-a-screen-reader.md │ └── deaf-and-hard-of-hearing │ │ ├── _index.md │ │ ├── best-practices -interviewing-deaf-hoh-individual.md │ │ ├── best-practices-interviewing-deaf-hoh-candidates │ │ ├── _index.md │ │ ├── best-practices-interviewing-deaf-candidate-relying-on-interpreters.md │ │ ├── interpreter-guide.md │ │ ├── interview-stage-specific-guide.md │ │ └── interviewer-and-hiring-manager-guide.md │ │ ├── conference-best-practices.md │ │ ├── live-captions-for-community-events.md │ │ └── tips-when-attending-or-speaking-at-a-conference.md ├── contributors │ ├── _index.md │ ├── getting-started.md │ └── projects.md ├── maintainers │ ├── _index.md │ ├── community │ │ ├── _index.md │ │ ├── contributor-growth-framework │ │ │ ├── _index.md │ │ │ ├── engagement.md │ │ │ ├── incentivizing-contributors.md │ │ │ ├── incentivizing-non-code.md │ │ │ ├── long-term-contributors.md │ │ │ ├── meeting-moderation.md │ │ │ ├── motivation.md │ │ │ ├── open-source-roadmaps.md │ │ │ └── pr-workflow.md │ │ ├── crm-runbook.md │ │ ├── project-health.md │ │ ├── recruiting-playbook.md │ │ └── vendor-neutrality.md │ ├── governance │ │ ├── _index.md │ │ ├── charter.md │ │ ├── leadership-selection.md │ │ ├── overview.md │ │ └── paperwork-checklist.md │ ├── security │ │ ├── _index.md │ │ ├── images │ │ │ └── SecurityGuidelines.png │ │ └── security-guidelines.md │ └── templates │ │ ├── _index.md │ │ ├── contributing.md │ │ ├── governance-elections.md │ │ ├── governance-intro.md │ │ ├── governance-maintainer.md │ │ ├── governance-subprojects.md │ │ ├── issue-labels.md │ │ ├── maintainers.md │ │ ├── reviewing.md │ │ └── sample-instructions.png ├── resources │ ├── _index.md │ ├── glossary.md │ ├── how-to │ │ ├── _index.md │ │ ├── change-affiliation.md │ │ ├── change-email.md │ │ ├── submit-license-exception-request.md │ │ ├── submit-presentations.md │ │ └── update- │ ├── newsletters │ │ ├── 2023-01-24-ProjectNewsletter.md │ │ ├── 2023-02-22-ProjectNewsletter.md │ │ ├── 2023-03-22-ProjectNewsletter.md │ │ ├── 2023-04-26-ProjectNewsletter.md │ │ ├── 2023-05-24-ProjectNewsletter.md │ │ ├── 2023-06-23-ProjectNewsletter.md │ │ ├── 2023-07-20-ProjectNewsletter.md │ │ ├── 2023-08-23-ProjectNewsletter.md │ │ ├── 2023-09-20-ProjectNewsletter.md │ │ ├── 2023-10-26-ProjectNewsletter.md │ │ ├── 2023-11-23-ProjectNewsletter.md │ │ ├── 2023-12-20-ProjectNewsletter.md │ │ ├── 2024-01-26-ProjectNewsletter.md │ │ ├── 2024-02-21-ProjectNewsletter.md │ │ ├── 2024-03-14-ProjectNewsletter.md │ │ ├── 2024-04-25-ProjectNewsletter.md │ │ ├── _index.md │ │ └── share_7138959161444758122.png │ ├── project-services │ │ ├── _index.md │ │ ├── audits │ │ │ └── _index.md │ │ ├── cncf-support │ │ │ └── _index.md │ │ ├── faq.md │ │ ├── hosted-tools │ │ │ └── _index.md │ │ ├── maturity-levels │ │ │ └── _index.md │ │ ├── outreach-events │ │ │ └── _index.md │ │ └── technical-writing │ │ │ └── _index.md │ ├── templates.md │ ├── todogroup_resources.md │ └── videos │ │ ├── 2020 │ │ ├── collaborative-leadership.md │ │ └── project-paperwork.md │ │ ├── 2021 │ │ ├── build-your-contributor-pipeline.md │ │ ├── growing-your-projects-contributor-experience.md │ │ ├── maintainer-toolkit.md │ │ ├── measure-project-health.md │ │ └── turn-contributors-into-maintainers.md │ │ ├── 2022 │ │ ├── future-of-oss-contributions.md │ │ ├── good-governance-practices.md │ │ ├── livestream.md │ │ └── nurture-the-whole-project.md │ │ ├── 2023 │ │ ├── empowering-the-deaf-and-hard-of-hearing-in-cloud-native-and-open-source.md │ │ ├── from-maori-to-deaf-engineers.md │ │ ├── helping-open-source-projects-level-up.md │ │ ├── keynote-building-a-sustainable-cncf-project-contributor-base.md │ │ ├── keynote-hot-dog-the-technical-oversight-committee-is-on-a-roll.md │ │ ├── tag-contributor-strategy-what-we-get-out-of-it.md │ │ ├── the-cube-interview-with-deaf-and-hard-of-hearing-wg-co-chairs.md │ │ └── united-in-the-cloud-where-inclusion-winds-around-the-world.md │ │ └── _index.md ├── search.md └── twitter-card.png ├── data └── projects.json ├── go.mod ├── i18n └── en.toml ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ └── render-link.html │ ├── baseof.html │ ├── content.html │ ├── list.html │ ├── search.html │ └── single.html ├── docs │ ├── baseof.html │ ├── list.html │ └── single.html ├── home.html ├── partials │ ├── favicons.html │ ├── featured-image.html │ ├── feedback.html │ ├── footer.html │ ├── gtm-noscript.html │ ├── head.html │ ├── navbar.html │ ├── page-meta-lastmod.html │ ├── page-meta-links.html │ ├── search-input.html │ ├── section-index.html │ ├── sidebar-tree.html │ ├── toc.html │ └── twitter_cards.html ├── shortcodes │ ├── blocks │ │ ├── feature.html │ │ ├── lead.html │ │ └── section.html │ ├── projects-details.html │ └── projects.html ├── single │ ├── baseof.html │ └── single.html └── videos │ ├── baseof.html │ ├── content.html │ ├── list.html │ └── single.html └── static ├── favicons ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon.ico └── favicon.svg ├── fonts ├── ClarityCity-100.ttf ├── ClarityCity-100.woff ├── ClarityCity-100.woff2 ├── ClarityCity-100Italic.ttf ├── ClarityCity-100Italic.woff ├── ClarityCity-100Italic.woff2 ├── ClarityCity-200.ttf ├── ClarityCity-200.woff ├── ClarityCity-200.woff2 ├── ClarityCity-200Italic.ttf ├── ClarityCity-200Italic.woff ├── ClarityCity-200Italic.woff2 ├── ClarityCity-300.ttf ├── ClarityCity-300.woff ├── ClarityCity-300.woff2 ├── ClarityCity-300Italic.ttf ├── ClarityCity-300Italic.woff ├── ClarityCity-300Italic.woff2 ├── ClarityCity-400.ttf ├── ClarityCity-400.woff ├── ClarityCity-400.woff2 ├── ClarityCity-400Italic.ttf ├── ClarityCity-400Italic.woff ├── ClarityCity-400Italic.woff2 ├── ClarityCity-500.ttf ├── ClarityCity-500.woff ├── ClarityCity-500.woff2 ├── ClarityCity-500Italic.ttf ├── ClarityCity-500Italic.woff ├── ClarityCity-500Italic.woff2 ├── ClarityCity-600.ttf ├── ClarityCity-600.woff ├── ClarityCity-600.woff2 ├── ClarityCity-600Italic.ttf ├── ClarityCity-600Italic.woff ├── ClarityCity-600Italic.woff2 ├── ClarityCity-700.ttf ├── ClarityCity-700.woff ├── ClarityCity-700.woff2 ├── ClarityCity-700Italic.ttf ├── ClarityCity-700Italic.woff ├── ClarityCity-700Italic.woff2 ├── ClarityCity-800.ttf ├── ClarityCity-800.woff ├── ClarityCity-800.woff2 ├── ClarityCity-800Italic.ttf ├── ClarityCity-800Italic.woff ├── ClarityCity-800Italic.woff2 ├── ClarityCity-900.ttf ├── ClarityCity-900.woff ├── ClarityCity-900.woff2 ├── ClarityCity-900Italic.ttf ├── ClarityCity-900Italic.woff └── ClarityCity-900Italic.woff2 ├── images ├── CNCF_logo_white.svg ├── TAG-CS_roadmap_visual.png ├── cloud-native-contributors.jpg ├── people-chatting-at-event.jpg ├── person-working-at-conference.jpg ├── person-working-on-laptop.jpg ├── tag-contributor-strategy-icon-color.png ├── tag-contributor-strategy-stacked-color.png ├── video-thumbnails │ ├── empowering-the-deaf-and-hard-of-hearing-in-cloud-native-and-open-source.png │ ├── from-maori-to-deaf-engineers.png │ ├── keynote-building-a-sustainable-cncf-project-contributor-base.png │ ├── keynote-hot-dog-the-technical-oversight-committee-is-on-a-roll.png │ ├── tag-contributor-strategy-what-we-get-out-of-it.png │ ├── the-cube-interview-with-deaf-and-hard-of-hearing-wg-co-chairs.png │ └── united-in-the-cloud-where-inclusion-winds-around-the-world.png └── youtube-thumbnail.png ├── js └── home.js └── social ├── boxed-blog.svg ├── boxed-discussion.svg ├── boxed-email.svg ├── boxed-facebook.svg ├── boxed-flickr.svg ├── boxed-github.svg ├── boxed-gitter.svg ├── boxed-instagram.svg ├── boxed-lf-artwork.svg ├── boxed-lf-devstats.svg ├── boxed-linkedin.svg ├── boxed-meetup.svg ├── boxed-qq.svg ├── boxed-rss.svg ├── boxed-slack.svg ├── boxed-stack-overflow.svg ├── boxed-twitch.svg ├── boxed-twitter.svg ├── boxed-website.svg ├── boxed-wechat.svg ├── boxed-whatsapp.svg ├── boxed-x.svg ├── boxed-youtube.svg ├── email.svg ├── facebook.svg ├── flickr.svg ├── github.svg ├── linkedin-black.svg ├── linkedin-white.svg ├── meetup.svg ├── slack.svg ├── twitch.svg ├── twitter.svg ├── wechat.svg └── youtube.svg /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/governance-review-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/.github/ISSUE_TEMPLATE/governance-review-request.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/updateprojects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/.github/workflows/updateprojects.py -------------------------------------------------------------------------------- /.github/workflows/updateprojects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/.github/workflows/updateprojects.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/README.md -------------------------------------------------------------------------------- /bipoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/bipoc/README.md -------------------------------------------------------------------------------- /blind-and-visually-impaired/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/blind-and-visually-impaired/README.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /contributor-growth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/contributor-growth/README.md -------------------------------------------------------------------------------- /contributor-growth/annual-review-email-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/contributor-growth/annual-review-email-template.md -------------------------------------------------------------------------------- /contributor-growth/drafts/crm-runbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/contributor-growth/drafts/crm-runbook.md -------------------------------------------------------------------------------- /deaf-and-hard-of-hearing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/deaf-and-hard-of-hearing/README.md -------------------------------------------------------------------------------- /deaf-and-hard-of-hearing/deaf-and-hard-of-hearing-individuals/tips-when-attending-or-speaking-at-a-conference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/deaf-and-hard-of-hearing/deaf-and-hard-of-hearing-individuals/tips-when-attending-or-speaking-at-a-conference.md -------------------------------------------------------------------------------- /deaf-and-hard-of-hearing/event-organizers/conference-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/deaf-and-hard-of-hearing/event-organizers/conference-best-practices.md -------------------------------------------------------------------------------- /github-mgmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/github-mgmt/README.md -------------------------------------------------------------------------------- /governance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/governance/README.md -------------------------------------------------------------------------------- /governance/assessments/projects/cert-manager/2024-07-22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/governance/assessments/projects/cert-manager/2024-07-22.md -------------------------------------------------------------------------------- /governance/assessments/projects/cilium/2023-08-22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/governance/assessments/projects/cilium/2023-08-22.md -------------------------------------------------------------------------------- /governance/assessments/projects/dapr/2024-10-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/governance/assessments/projects/dapr/2024-10-04.md -------------------------------------------------------------------------------- /governance/assessments/projects/flatcar/2023-08-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/governance/assessments/projects/flatcar/2023-08-15.md -------------------------------------------------------------------------------- /governance/assessments/projects/it-toto/2024-10-31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/governance/assessments/projects/it-toto/2024-10-31.md -------------------------------------------------------------------------------- /governance/assessments/projects/karmada/2023-08-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/governance/assessments/projects/karmada/2023-08-29.md -------------------------------------------------------------------------------- /governance/assessments/projects/knative/2025-05-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/governance/assessments/projects/knative/2025-05-29.md -------------------------------------------------------------------------------- /governance/assessments/projects/kserve/2025-03-06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/governance/assessments/projects/kserve/2025-03-06.md -------------------------------------------------------------------------------- /governance/assessments/projects/kubeedge/2024-06-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/governance/assessments/projects/kubeedge/2024-06-12.md -------------------------------------------------------------------------------- /governance/assessments/projects/pixie/2024-09-27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/governance/assessments/projects/pixie/2024-09-27.md -------------------------------------------------------------------------------- /governance/assessments/projects/wasmedge/2025-02-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/governance/assessments/projects/wasmedge/2025-02-12.md -------------------------------------------------------------------------------- /governance/reviews/handbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/governance/reviews/handbook.md -------------------------------------------------------------------------------- /governance/reviews/sandbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/governance/reviews/sandbox.md -------------------------------------------------------------------------------- /governance/reviews/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/governance/reviews/template.md -------------------------------------------------------------------------------- /inclusiveness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/inclusiveness.md -------------------------------------------------------------------------------- /maintainers-circle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/maintainers-circle/README.md -------------------------------------------------------------------------------- /maintainers-circle/burnout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/maintainers-circle/burnout/README.md -------------------------------------------------------------------------------- /maintainers-circle/hosting-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/maintainers-circle/hosting-guide.md -------------------------------------------------------------------------------- /mentoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/mentoring/README.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/package.json -------------------------------------------------------------------------------- /resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/resources.md -------------------------------------------------------------------------------- /valued-members.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/valued-members.md -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/.vscode/settings.json -------------------------------------------------------------------------------- /website/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/Dockerfile -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/README.md -------------------------------------------------------------------------------- /website/assets/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/icons/logo.svg -------------------------------------------------------------------------------- /website/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/js/search.js -------------------------------------------------------------------------------- /website/assets/scss/_about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_about.scss -------------------------------------------------------------------------------- /website/assets/scss/_archive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_archive.scss -------------------------------------------------------------------------------- /website/assets/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_buttons.scss -------------------------------------------------------------------------------- /website/assets/scss/_cookie-banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_cookie-banner.scss -------------------------------------------------------------------------------- /website/assets/scss/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_footer.scss -------------------------------------------------------------------------------- /website/assets/scss/_hamburger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_hamburger.scss -------------------------------------------------------------------------------- /website/assets/scss/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_header.scss -------------------------------------------------------------------------------- /website/assets/scss/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_home.scss -------------------------------------------------------------------------------- /website/assets/scss/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_main.scss -------------------------------------------------------------------------------- /website/assets/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_nav.scss -------------------------------------------------------------------------------- /website/assets/scss/_projects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_projects.scss -------------------------------------------------------------------------------- /website/assets/scss/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_reset.scss -------------------------------------------------------------------------------- /website/assets/scss/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_search.scss -------------------------------------------------------------------------------- /website/assets/scss/_sidebar-left.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_sidebar-left.scss -------------------------------------------------------------------------------- /website/assets/scss/_sidebar-toc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_sidebar-toc.scss -------------------------------------------------------------------------------- /website/assets/scss/_styles_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_styles_project.scss -------------------------------------------------------------------------------- /website/assets/scss/_taxonomy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_taxonomy.scss -------------------------------------------------------------------------------- /website/assets/scss/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_typography.scss -------------------------------------------------------------------------------- /website/assets/scss/_variables_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_variables_project.scss -------------------------------------------------------------------------------- /website/assets/scss/_video.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/assets/scss/_video.scss -------------------------------------------------------------------------------- /website/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/config.toml -------------------------------------------------------------------------------- /website/content/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/_index.html -------------------------------------------------------------------------------- /website/content/about/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/about/_index.md -------------------------------------------------------------------------------- /website/content/about/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/about/contributing.md -------------------------------------------------------------------------------- /website/content/about/featured-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/about/featured-background.jpg -------------------------------------------------------------------------------- /website/content/about/working-groups/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Working Groups 3 | --- -------------------------------------------------------------------------------- /website/content/about/working-groups/blind-and-visually-impaired.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/about/working-groups/blind-and-visually-impaired.md -------------------------------------------------------------------------------- /website/content/about/working-groups/contributor-growth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/about/working-groups/contributor-growth.md -------------------------------------------------------------------------------- /website/content/about/working-groups/deaf-and-hard-of-hearing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/about/working-groups/deaf-and-hard-of-hearing.md -------------------------------------------------------------------------------- /website/content/about/working-groups/governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/about/working-groups/governance.md -------------------------------------------------------------------------------- /website/content/about/working-groups/maintainers-circle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/about/working-groups/maintainers-circle.md -------------------------------------------------------------------------------- /website/content/about/working-groups/mentoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/about/working-groups/mentoring.md -------------------------------------------------------------------------------- /website/content/accessibility/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/accessibility/_index.md -------------------------------------------------------------------------------- /website/content/accessibility/blind-and-visually-impaired/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/accessibility/blind-and-visually-impaired/_index.md -------------------------------------------------------------------------------- /website/content/accessibility/blind-and-visually-impaired/using-slack-with-a-screen-reader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/accessibility/blind-and-visually-impaired/using-slack-with-a-screen-reader.md -------------------------------------------------------------------------------- /website/content/accessibility/deaf-and-hard-of-hearing/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/accessibility/deaf-and-hard-of-hearing/_index.md -------------------------------------------------------------------------------- /website/content/accessibility/deaf-and-hard-of-hearing/best-practices -interviewing-deaf-hoh-individual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/accessibility/deaf-and-hard-of-hearing/best-practices -interviewing-deaf-hoh-individual.md -------------------------------------------------------------------------------- /website/content/accessibility/deaf-and-hard-of-hearing/best-practices-interviewing-deaf-hoh-candidates/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/accessibility/deaf-and-hard-of-hearing/best-practices-interviewing-deaf-hoh-candidates/_index.md -------------------------------------------------------------------------------- /website/content/accessibility/deaf-and-hard-of-hearing/best-practices-interviewing-deaf-hoh-candidates/best-practices-interviewing-deaf-candidate-relying-on-interpreters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/accessibility/deaf-and-hard-of-hearing/best-practices-interviewing-deaf-hoh-candidates/best-practices-interviewing-deaf-candidate-relying-on-interpreters.md -------------------------------------------------------------------------------- /website/content/accessibility/deaf-and-hard-of-hearing/best-practices-interviewing-deaf-hoh-candidates/interpreter-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/accessibility/deaf-and-hard-of-hearing/best-practices-interviewing-deaf-hoh-candidates/interpreter-guide.md -------------------------------------------------------------------------------- /website/content/accessibility/deaf-and-hard-of-hearing/best-practices-interviewing-deaf-hoh-candidates/interview-stage-specific-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/accessibility/deaf-and-hard-of-hearing/best-practices-interviewing-deaf-hoh-candidates/interview-stage-specific-guide.md -------------------------------------------------------------------------------- /website/content/accessibility/deaf-and-hard-of-hearing/best-practices-interviewing-deaf-hoh-candidates/interviewer-and-hiring-manager-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/accessibility/deaf-and-hard-of-hearing/best-practices-interviewing-deaf-hoh-candidates/interviewer-and-hiring-manager-guide.md -------------------------------------------------------------------------------- /website/content/accessibility/deaf-and-hard-of-hearing/conference-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/accessibility/deaf-and-hard-of-hearing/conference-best-practices.md -------------------------------------------------------------------------------- /website/content/accessibility/deaf-and-hard-of-hearing/live-captions-for-community-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/accessibility/deaf-and-hard-of-hearing/live-captions-for-community-events.md -------------------------------------------------------------------------------- /website/content/accessibility/deaf-and-hard-of-hearing/tips-when-attending-or-speaking-at-a-conference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/accessibility/deaf-and-hard-of-hearing/tips-when-attending-or-speaking-at-a-conference.md -------------------------------------------------------------------------------- /website/content/contributors/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/contributors/_index.md -------------------------------------------------------------------------------- /website/content/contributors/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/contributors/getting-started.md -------------------------------------------------------------------------------- /website/content/contributors/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/contributors/projects.md -------------------------------------------------------------------------------- /website/content/maintainers/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/_index.md -------------------------------------------------------------------------------- /website/content/maintainers/community/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/community/_index.md -------------------------------------------------------------------------------- /website/content/maintainers/community/contributor-growth-framework/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/community/contributor-growth-framework/_index.md -------------------------------------------------------------------------------- /website/content/maintainers/community/contributor-growth-framework/engagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/community/contributor-growth-framework/engagement.md -------------------------------------------------------------------------------- /website/content/maintainers/community/contributor-growth-framework/incentivizing-contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/community/contributor-growth-framework/incentivizing-contributors.md -------------------------------------------------------------------------------- /website/content/maintainers/community/contributor-growth-framework/incentivizing-non-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/community/contributor-growth-framework/incentivizing-non-code.md -------------------------------------------------------------------------------- /website/content/maintainers/community/contributor-growth-framework/long-term-contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/community/contributor-growth-framework/long-term-contributors.md -------------------------------------------------------------------------------- /website/content/maintainers/community/contributor-growth-framework/meeting-moderation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/community/contributor-growth-framework/meeting-moderation.md -------------------------------------------------------------------------------- /website/content/maintainers/community/contributor-growth-framework/motivation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/community/contributor-growth-framework/motivation.md -------------------------------------------------------------------------------- /website/content/maintainers/community/contributor-growth-framework/open-source-roadmaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/community/contributor-growth-framework/open-source-roadmaps.md -------------------------------------------------------------------------------- /website/content/maintainers/community/contributor-growth-framework/pr-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/community/contributor-growth-framework/pr-workflow.md -------------------------------------------------------------------------------- /website/content/maintainers/community/crm-runbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/community/crm-runbook.md -------------------------------------------------------------------------------- /website/content/maintainers/community/project-health.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/community/project-health.md -------------------------------------------------------------------------------- /website/content/maintainers/community/recruiting-playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/community/recruiting-playbook.md -------------------------------------------------------------------------------- /website/content/maintainers/community/vendor-neutrality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/community/vendor-neutrality.md -------------------------------------------------------------------------------- /website/content/maintainers/governance/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/governance/_index.md -------------------------------------------------------------------------------- /website/content/maintainers/governance/charter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/governance/charter.md -------------------------------------------------------------------------------- /website/content/maintainers/governance/leadership-selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/governance/leadership-selection.md -------------------------------------------------------------------------------- /website/content/maintainers/governance/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/governance/overview.md -------------------------------------------------------------------------------- /website/content/maintainers/governance/paperwork-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/governance/paperwork-checklist.md -------------------------------------------------------------------------------- /website/content/maintainers/security/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/security/_index.md -------------------------------------------------------------------------------- /website/content/maintainers/security/images/SecurityGuidelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/security/images/SecurityGuidelines.png -------------------------------------------------------------------------------- /website/content/maintainers/security/security-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/security/security-guidelines.md -------------------------------------------------------------------------------- /website/content/maintainers/templates/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/templates/_index.md -------------------------------------------------------------------------------- /website/content/maintainers/templates/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/templates/contributing.md -------------------------------------------------------------------------------- /website/content/maintainers/templates/governance-elections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/templates/governance-elections.md -------------------------------------------------------------------------------- /website/content/maintainers/templates/governance-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/templates/governance-intro.md -------------------------------------------------------------------------------- /website/content/maintainers/templates/governance-maintainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/templates/governance-maintainer.md -------------------------------------------------------------------------------- /website/content/maintainers/templates/governance-subprojects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/templates/governance-subprojects.md -------------------------------------------------------------------------------- /website/content/maintainers/templates/issue-labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/templates/issue-labels.md -------------------------------------------------------------------------------- /website/content/maintainers/templates/maintainers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/templates/maintainers.md -------------------------------------------------------------------------------- /website/content/maintainers/templates/reviewing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/templates/reviewing.md -------------------------------------------------------------------------------- /website/content/maintainers/templates/sample-instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/maintainers/templates/sample-instructions.png -------------------------------------------------------------------------------- /website/content/resources/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/_index.md -------------------------------------------------------------------------------- /website/content/resources/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/glossary.md -------------------------------------------------------------------------------- /website/content/resources/how-to/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/how-to/_index.md -------------------------------------------------------------------------------- /website/content/resources/how-to/change-affiliation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/how-to/change-affiliation.md -------------------------------------------------------------------------------- /website/content/resources/how-to/change-email.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/how-to/change-email.md -------------------------------------------------------------------------------- /website/content/resources/how-to/submit-license-exception-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/how-to/submit-license-exception-request.md -------------------------------------------------------------------------------- /website/content/resources/how-to/submit-presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/how-to/submit-presentations.md -------------------------------------------------------------------------------- /website/content/resources/how-to/update-: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/how-to/update- -------------------------------------------------------------------------------- /website/content/resources/newsletters/2023-01-24-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2023-01-24-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/2023-02-22-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2023-02-22-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/2023-03-22-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2023-03-22-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/2023-04-26-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2023-04-26-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/2023-05-24-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2023-05-24-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/2023-06-23-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2023-06-23-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/2023-07-20-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2023-07-20-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/2023-08-23-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2023-08-23-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/2023-09-20-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2023-09-20-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/2023-10-26-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2023-10-26-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/2023-11-23-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2023-11-23-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/2023-12-20-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2023-12-20-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/2024-01-26-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2024-01-26-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/2024-02-21-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2024-02-21-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/2024-03-14-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2024-03-14-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/2024-04-25-ProjectNewsletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/2024-04-25-ProjectNewsletter.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/_index.md -------------------------------------------------------------------------------- /website/content/resources/newsletters/share_7138959161444758122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/newsletters/share_7138959161444758122.png -------------------------------------------------------------------------------- /website/content/resources/project-services/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/project-services/_index.md -------------------------------------------------------------------------------- /website/content/resources/project-services/audits/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/project-services/audits/_index.md -------------------------------------------------------------------------------- /website/content/resources/project-services/cncf-support/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/project-services/cncf-support/_index.md -------------------------------------------------------------------------------- /website/content/resources/project-services/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/project-services/faq.md -------------------------------------------------------------------------------- /website/content/resources/project-services/hosted-tools/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/project-services/hosted-tools/_index.md -------------------------------------------------------------------------------- /website/content/resources/project-services/maturity-levels/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/project-services/maturity-levels/_index.md -------------------------------------------------------------------------------- /website/content/resources/project-services/outreach-events/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/project-services/outreach-events/_index.md -------------------------------------------------------------------------------- /website/content/resources/project-services/technical-writing/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/project-services/technical-writing/_index.md -------------------------------------------------------------------------------- /website/content/resources/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/templates.md -------------------------------------------------------------------------------- /website/content/resources/todogroup_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/todogroup_resources.md -------------------------------------------------------------------------------- /website/content/resources/videos/2020/collaborative-leadership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2020/collaborative-leadership.md -------------------------------------------------------------------------------- /website/content/resources/videos/2020/project-paperwork.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2020/project-paperwork.md -------------------------------------------------------------------------------- /website/content/resources/videos/2021/build-your-contributor-pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2021/build-your-contributor-pipeline.md -------------------------------------------------------------------------------- /website/content/resources/videos/2021/growing-your-projects-contributor-experience.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2021/growing-your-projects-contributor-experience.md -------------------------------------------------------------------------------- /website/content/resources/videos/2021/maintainer-toolkit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2021/maintainer-toolkit.md -------------------------------------------------------------------------------- /website/content/resources/videos/2021/measure-project-health.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2021/measure-project-health.md -------------------------------------------------------------------------------- /website/content/resources/videos/2021/turn-contributors-into-maintainers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2021/turn-contributors-into-maintainers.md -------------------------------------------------------------------------------- /website/content/resources/videos/2022/future-of-oss-contributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2022/future-of-oss-contributions.md -------------------------------------------------------------------------------- /website/content/resources/videos/2022/good-governance-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2022/good-governance-practices.md -------------------------------------------------------------------------------- /website/content/resources/videos/2022/livestream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2022/livestream.md -------------------------------------------------------------------------------- /website/content/resources/videos/2022/nurture-the-whole-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2022/nurture-the-whole-project.md -------------------------------------------------------------------------------- /website/content/resources/videos/2023/empowering-the-deaf-and-hard-of-hearing-in-cloud-native-and-open-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2023/empowering-the-deaf-and-hard-of-hearing-in-cloud-native-and-open-source.md -------------------------------------------------------------------------------- /website/content/resources/videos/2023/from-maori-to-deaf-engineers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2023/from-maori-to-deaf-engineers.md -------------------------------------------------------------------------------- /website/content/resources/videos/2023/helping-open-source-projects-level-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2023/helping-open-source-projects-level-up.md -------------------------------------------------------------------------------- /website/content/resources/videos/2023/keynote-building-a-sustainable-cncf-project-contributor-base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2023/keynote-building-a-sustainable-cncf-project-contributor-base.md -------------------------------------------------------------------------------- /website/content/resources/videos/2023/keynote-hot-dog-the-technical-oversight-committee-is-on-a-roll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2023/keynote-hot-dog-the-technical-oversight-committee-is-on-a-roll.md -------------------------------------------------------------------------------- /website/content/resources/videos/2023/tag-contributor-strategy-what-we-get-out-of-it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2023/tag-contributor-strategy-what-we-get-out-of-it.md -------------------------------------------------------------------------------- /website/content/resources/videos/2023/the-cube-interview-with-deaf-and-hard-of-hearing-wg-co-chairs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2023/the-cube-interview-with-deaf-and-hard-of-hearing-wg-co-chairs.md -------------------------------------------------------------------------------- /website/content/resources/videos/2023/united-in-the-cloud-where-inclusion-winds-around-the-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/2023/united-in-the-cloud-where-inclusion-winds-around-the-world.md -------------------------------------------------------------------------------- /website/content/resources/videos/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/resources/videos/_index.md -------------------------------------------------------------------------------- /website/content/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/search.md -------------------------------------------------------------------------------- /website/content/twitter-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/content/twitter-card.png -------------------------------------------------------------------------------- /website/data/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/data/projects.json -------------------------------------------------------------------------------- /website/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/cncf/sig-contributor-strategy/website 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /website/i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/i18n/en.toml -------------------------------------------------------------------------------- /website/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/404.html -------------------------------------------------------------------------------- /website/layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/_default/_markup/render-link.html -------------------------------------------------------------------------------- /website/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/_default/baseof.html -------------------------------------------------------------------------------- /website/layouts/_default/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/_default/content.html -------------------------------------------------------------------------------- /website/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/_default/list.html -------------------------------------------------------------------------------- /website/layouts/_default/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/_default/search.html -------------------------------------------------------------------------------- /website/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/_default/single.html -------------------------------------------------------------------------------- /website/layouts/docs/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/docs/baseof.html -------------------------------------------------------------------------------- /website/layouts/docs/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/docs/list.html -------------------------------------------------------------------------------- /website/layouts/docs/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/docs/single.html -------------------------------------------------------------------------------- /website/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/home.html -------------------------------------------------------------------------------- /website/layouts/partials/favicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/partials/favicons.html -------------------------------------------------------------------------------- /website/layouts/partials/featured-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/partials/featured-image.html -------------------------------------------------------------------------------- /website/layouts/partials/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/partials/feedback.html -------------------------------------------------------------------------------- /website/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/partials/footer.html -------------------------------------------------------------------------------- /website/layouts/partials/gtm-noscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/partials/gtm-noscript.html -------------------------------------------------------------------------------- /website/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/partials/head.html -------------------------------------------------------------------------------- /website/layouts/partials/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/partials/navbar.html -------------------------------------------------------------------------------- /website/layouts/partials/page-meta-lastmod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/partials/page-meta-lastmod.html -------------------------------------------------------------------------------- /website/layouts/partials/page-meta-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/partials/page-meta-links.html -------------------------------------------------------------------------------- /website/layouts/partials/search-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/partials/search-input.html -------------------------------------------------------------------------------- /website/layouts/partials/section-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/partials/section-index.html -------------------------------------------------------------------------------- /website/layouts/partials/sidebar-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/partials/sidebar-tree.html -------------------------------------------------------------------------------- /website/layouts/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/partials/toc.html -------------------------------------------------------------------------------- /website/layouts/partials/twitter_cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/partials/twitter_cards.html -------------------------------------------------------------------------------- /website/layouts/shortcodes/blocks/feature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/shortcodes/blocks/feature.html -------------------------------------------------------------------------------- /website/layouts/shortcodes/blocks/lead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/shortcodes/blocks/lead.html -------------------------------------------------------------------------------- /website/layouts/shortcodes/blocks/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/shortcodes/blocks/section.html -------------------------------------------------------------------------------- /website/layouts/shortcodes/projects-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/shortcodes/projects-details.html -------------------------------------------------------------------------------- /website/layouts/shortcodes/projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/shortcodes/projects.html -------------------------------------------------------------------------------- /website/layouts/single/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/single/baseof.html -------------------------------------------------------------------------------- /website/layouts/single/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/single/single.html -------------------------------------------------------------------------------- /website/layouts/videos/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/videos/baseof.html -------------------------------------------------------------------------------- /website/layouts/videos/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/videos/content.html -------------------------------------------------------------------------------- /website/layouts/videos/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/videos/list.html -------------------------------------------------------------------------------- /website/layouts/videos/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/layouts/videos/single.html -------------------------------------------------------------------------------- /website/static/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /website/static/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /website/static/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /website/static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/favicons/favicon.ico -------------------------------------------------------------------------------- /website/static/favicons/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/favicons/favicon.svg -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-100.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-100.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-100.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-100.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-100Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-100Italic.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-100Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-100Italic.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-100Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-100Italic.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-200.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-200.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-200.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-200.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-200.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-200.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-200Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-200Italic.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-200Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-200Italic.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-200Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-200Italic.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-300.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-300.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-300.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-300Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-300Italic.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-300Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-300Italic.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-300Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-300Italic.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-400.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-400.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-400.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-400Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-400Italic.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-400Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-400Italic.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-400Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-400Italic.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-500.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-500.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-500.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-500Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-500Italic.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-500Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-500Italic.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-500Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-500Italic.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-600.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-600.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-600.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-600Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-600Italic.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-600Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-600Italic.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-600Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-600Italic.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-700.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-700.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-700.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-700Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-700Italic.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-700Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-700Italic.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-700Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-700Italic.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-800.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-800.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-800.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-800.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-800Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-800Italic.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-800Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-800Italic.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-800Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-800Italic.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-900.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-900.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-900.woff2 -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-900Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-900Italic.ttf -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-900Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-900Italic.woff -------------------------------------------------------------------------------- /website/static/fonts/ClarityCity-900Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/fonts/ClarityCity-900Italic.woff2 -------------------------------------------------------------------------------- /website/static/images/CNCF_logo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/CNCF_logo_white.svg -------------------------------------------------------------------------------- /website/static/images/TAG-CS_roadmap_visual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/TAG-CS_roadmap_visual.png -------------------------------------------------------------------------------- /website/static/images/cloud-native-contributors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/cloud-native-contributors.jpg -------------------------------------------------------------------------------- /website/static/images/people-chatting-at-event.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/people-chatting-at-event.jpg -------------------------------------------------------------------------------- /website/static/images/person-working-at-conference.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/person-working-at-conference.jpg -------------------------------------------------------------------------------- /website/static/images/person-working-on-laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/person-working-on-laptop.jpg -------------------------------------------------------------------------------- /website/static/images/tag-contributor-strategy-icon-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/tag-contributor-strategy-icon-color.png -------------------------------------------------------------------------------- /website/static/images/tag-contributor-strategy-stacked-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/tag-contributor-strategy-stacked-color.png -------------------------------------------------------------------------------- /website/static/images/video-thumbnails/empowering-the-deaf-and-hard-of-hearing-in-cloud-native-and-open-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/video-thumbnails/empowering-the-deaf-and-hard-of-hearing-in-cloud-native-and-open-source.png -------------------------------------------------------------------------------- /website/static/images/video-thumbnails/from-maori-to-deaf-engineers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/video-thumbnails/from-maori-to-deaf-engineers.png -------------------------------------------------------------------------------- /website/static/images/video-thumbnails/keynote-building-a-sustainable-cncf-project-contributor-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/video-thumbnails/keynote-building-a-sustainable-cncf-project-contributor-base.png -------------------------------------------------------------------------------- /website/static/images/video-thumbnails/keynote-hot-dog-the-technical-oversight-committee-is-on-a-roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/video-thumbnails/keynote-hot-dog-the-technical-oversight-committee-is-on-a-roll.png -------------------------------------------------------------------------------- /website/static/images/video-thumbnails/tag-contributor-strategy-what-we-get-out-of-it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/video-thumbnails/tag-contributor-strategy-what-we-get-out-of-it.png -------------------------------------------------------------------------------- /website/static/images/video-thumbnails/the-cube-interview-with-deaf-and-hard-of-hearing-wg-co-chairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/video-thumbnails/the-cube-interview-with-deaf-and-hard-of-hearing-wg-co-chairs.png -------------------------------------------------------------------------------- /website/static/images/video-thumbnails/united-in-the-cloud-where-inclusion-winds-around-the-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/video-thumbnails/united-in-the-cloud-where-inclusion-winds-around-the-world.png -------------------------------------------------------------------------------- /website/static/images/youtube-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/images/youtube-thumbnail.png -------------------------------------------------------------------------------- /website/static/js/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/js/home.js -------------------------------------------------------------------------------- /website/static/social/boxed-blog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-blog.svg -------------------------------------------------------------------------------- /website/static/social/boxed-discussion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-discussion.svg -------------------------------------------------------------------------------- /website/static/social/boxed-email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-email.svg -------------------------------------------------------------------------------- /website/static/social/boxed-facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-facebook.svg -------------------------------------------------------------------------------- /website/static/social/boxed-flickr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-flickr.svg -------------------------------------------------------------------------------- /website/static/social/boxed-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-github.svg -------------------------------------------------------------------------------- /website/static/social/boxed-gitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-gitter.svg -------------------------------------------------------------------------------- /website/static/social/boxed-instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-instagram.svg -------------------------------------------------------------------------------- /website/static/social/boxed-lf-artwork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-lf-artwork.svg -------------------------------------------------------------------------------- /website/static/social/boxed-lf-devstats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-lf-devstats.svg -------------------------------------------------------------------------------- /website/static/social/boxed-linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-linkedin.svg -------------------------------------------------------------------------------- /website/static/social/boxed-meetup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-meetup.svg -------------------------------------------------------------------------------- /website/static/social/boxed-qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-qq.svg -------------------------------------------------------------------------------- /website/static/social/boxed-rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-rss.svg -------------------------------------------------------------------------------- /website/static/social/boxed-slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-slack.svg -------------------------------------------------------------------------------- /website/static/social/boxed-stack-overflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-stack-overflow.svg -------------------------------------------------------------------------------- /website/static/social/boxed-twitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-twitch.svg -------------------------------------------------------------------------------- /website/static/social/boxed-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-twitter.svg -------------------------------------------------------------------------------- /website/static/social/boxed-website.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-website.svg -------------------------------------------------------------------------------- /website/static/social/boxed-wechat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-wechat.svg -------------------------------------------------------------------------------- /website/static/social/boxed-whatsapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-whatsapp.svg -------------------------------------------------------------------------------- /website/static/social/boxed-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-x.svg -------------------------------------------------------------------------------- /website/static/social/boxed-youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/boxed-youtube.svg -------------------------------------------------------------------------------- /website/static/social/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/email.svg -------------------------------------------------------------------------------- /website/static/social/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/facebook.svg -------------------------------------------------------------------------------- /website/static/social/flickr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/flickr.svg -------------------------------------------------------------------------------- /website/static/social/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/github.svg -------------------------------------------------------------------------------- /website/static/social/linkedin-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/linkedin-black.svg -------------------------------------------------------------------------------- /website/static/social/linkedin-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/linkedin-white.svg -------------------------------------------------------------------------------- /website/static/social/meetup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/meetup.svg -------------------------------------------------------------------------------- /website/static/social/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/slack.svg -------------------------------------------------------------------------------- /website/static/social/twitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/twitch.svg -------------------------------------------------------------------------------- /website/static/social/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/twitter.svg -------------------------------------------------------------------------------- /website/static/social/wechat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/wechat.svg -------------------------------------------------------------------------------- /website/static/social/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-contributor-strategy/HEAD/website/static/social/youtube.svg --------------------------------------------------------------------------------