angular/aio/content/marketing
Angular Robot a5cc82ee84 docs: update events (#54749)
Generated `events.json` with the latest events retrieved from the Firebase DB.

PR Close #54749
2024-03-15 16:38:14 +00:00
..
about.html fix(docs-infra): limit max content width on "Contributors" and "Cheat sheet" pages (#41051) 2021-03-09 08:52:51 -08:00
announcements.json docs: update ng-conf announcement to remove livestream link (#36382) 2020-04-01 13:14:42 -07:00
api.html fix(docs-infra): avoid truncating several API list items (#41051) 2021-03-09 08:52:52 -08:00
contribute.html docs: update of landing page and backup pages (#47047) 2022-12-09 16:04:34 -08:00
contributors.json docs: add alejandrocuba to GDE resources (#53842) 2024-02-06 20:34:01 +00:00
docs.md docs: update the intro page (#49980) 2023-05-01 10:02:20 -07:00
events-contributing.md docs: update of landing page and backup pages (#47047) 2022-12-09 16:04:34 -08:00
events.html refactor(docs-infra): use more consistent content width on marketing pages (#41051) 2021-03-09 08:52:51 -08:00
events.json docs: update events (#54749) 2024-03-15 16:38:14 +00:00
everyone.md docs: update of landing page and backup pages (#47047) 2022-12-09 16:04:34 -08:00
features.html docs: update of landing page and backup pages (#47047) 2022-12-09 16:04:34 -08:00
index.html docs: remove live event from the home page (#52878) 2023-11-13 22:29:47 +00:00
presskit.html feat(core): enable block syntax (#51994) 2023-10-03 15:26:05 -07:00
quick-start.md docs: typos and wording (#48597) 2023-04-18 16:58:31 +00:00
README.md docs: updating the docs with the http secure tag (#50696) 2023-06-21 11:45:51 -07:00
resources-contributing.md docs: update of landing page and backup pages (#47047) 2022-12-09 16:04:34 -08:00
resources.html docs(aio): use h1 rather than divs and hide heading anchors 2017-06-07 11:26:27 -07:00
resources.json docs: update SSR doc to reflect version 17 (#52398) 2023-10-26 12:30:59 -07:00
scaling.md docs: update of landing page and backup pages (#47047) 2022-12-09 16:04:34 -08:00
test.html fix(docs-infra): always default to no linenums in <aio-code> (#31674) 2019-07-24 14:38:54 -07:00

Contributors page

We have an official accounting of who is on the Angular Team see [this link](/about?group=Angular), who are "trusted collaborators" see [this link](/about?group=Collaborators), and so on.

The contributors.json should be maintained to keep our "org chart" in a single consistent place.

GDE listings

There are two pages:

About the data

  • Keys in contributors.json should be GitHub handles. Most currently are, but not all. This will allow us to use GitHub as the default source for things like name, avatar, etc.

  • Keys are sorted in alphabetical order, please keep the sorting order when adding new entries.

  • Pictures are stored in aio/content/images/bios/<picture-filename>.

Processing the data

Install https://stedolan.github.io/jq/ which is amazing.

for handle in $(jq keys[] --raw-output < aio/content/marketing/contributors.json) do echo -e "\n$handle\n---------\n"; curl --silent -H "Authorization: token ${TOKEN}" https://api.github.com/users/$handle
| jq ".message,.name,.company,.blog,.bio" --raw-output done

Relevant scripts are stored in aio/scripts/contributors/.