├── .github ├── FUNDING.yml └── stale.yml ├── .gitignore ├── .gitmodules ├── README.md ├── archetypes └── default.md ├── config.toml ├── content ├── about.md ├── channels.md ├── coc.md ├── freelancers.html └── netiquette.md ├── data ├── channels.json └── freelancers.json ├── layouts ├── _default │ └── _markup │ │ └── render-link.html ├── channels │ └── single.html ├── freelancers │ └── single.html ├── index.html └── partials │ ├── channels_list.html │ ├── footer.html │ ├── freelancers_list.html │ └── header.html ├── netlify.toml └── static ├── css ├── channels.css ├── custom.css └── freelancers.css └── images ├── bcneng_400x400.png ├── bcneng_outline.svg ├── homepage-image.jpg ├── project-logos └── step4ward-logo.webp ├── sponsor-logos ├── digital-ocean.svg ├── donut.png ├── opensay.png ├── slack.webp └── truffle.png └── team ├── cande.jpeg ├── cristina.png ├── gon.jpeg ├── mavi.jpeg ├── ronny.jpeg └── smoya.jpeg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | resources/_gen 2 | .hugo_build.lock 3 | .DS_Store 4 | .vscode 5 | public/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/config.toml -------------------------------------------------------------------------------- /content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/content/about.md -------------------------------------------------------------------------------- /content/channels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/content/channels.md -------------------------------------------------------------------------------- /content/coc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/content/coc.md -------------------------------------------------------------------------------- /content/freelancers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/content/freelancers.html -------------------------------------------------------------------------------- /content/netiquette.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/content/netiquette.md -------------------------------------------------------------------------------- /data/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/data/channels.json -------------------------------------------------------------------------------- /data/freelancers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/data/freelancers.json -------------------------------------------------------------------------------- /layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/layouts/_default/_markup/render-link.html -------------------------------------------------------------------------------- /layouts/channels/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/layouts/channels/single.html -------------------------------------------------------------------------------- /layouts/freelancers/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/layouts/freelancers/single.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/channels_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/layouts/partials/channels_list.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/freelancers_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/layouts/partials/freelancers_list.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/netlify.toml -------------------------------------------------------------------------------- /static/css/channels.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/css/channels.css -------------------------------------------------------------------------------- /static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/css/custom.css -------------------------------------------------------------------------------- /static/css/freelancers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/css/freelancers.css -------------------------------------------------------------------------------- /static/images/bcneng_400x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/images/bcneng_400x400.png -------------------------------------------------------------------------------- /static/images/bcneng_outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/images/bcneng_outline.svg -------------------------------------------------------------------------------- /static/images/homepage-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/images/homepage-image.jpg -------------------------------------------------------------------------------- /static/images/project-logos/step4ward-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/images/project-logos/step4ward-logo.webp -------------------------------------------------------------------------------- /static/images/sponsor-logos/digital-ocean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/images/sponsor-logos/digital-ocean.svg -------------------------------------------------------------------------------- /static/images/sponsor-logos/donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/images/sponsor-logos/donut.png -------------------------------------------------------------------------------- /static/images/sponsor-logos/opensay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/images/sponsor-logos/opensay.png -------------------------------------------------------------------------------- /static/images/sponsor-logos/slack.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/images/sponsor-logos/slack.webp -------------------------------------------------------------------------------- /static/images/sponsor-logos/truffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/images/sponsor-logos/truffle.png -------------------------------------------------------------------------------- /static/images/team/cande.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/images/team/cande.jpeg -------------------------------------------------------------------------------- /static/images/team/cristina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/images/team/cristina.png -------------------------------------------------------------------------------- /static/images/team/gon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/images/team/gon.jpeg -------------------------------------------------------------------------------- /static/images/team/mavi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/images/team/mavi.jpeg -------------------------------------------------------------------------------- /static/images/team/ronny.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/images/team/ronny.jpeg -------------------------------------------------------------------------------- /static/images/team/smoya.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcneng/website/HEAD/static/images/team/smoya.jpeg --------------------------------------------------------------------------------