diff --git a/_data/org-members.yaml b/_data/org-members.yaml index dfadb37f..67de1bf6 100644 --- a/_data/org-members.yaml +++ b/_data/org-members.yaml @@ -16,5 +16,12 @@ standard: founding_member: true tier: "Standard" background: rgba(0, 0, 0, 0.7) + - name: "Pasteur ISI" + url: https://pasteurlabs.ai/ + figure: logo-pasteur.png + acronym: + date_joined: 2024-11-04 + founding_member: true + tier: "Standard" premier: diff --git a/assets/img/org-logos/logo-pasteur.png b/assets/img/org-logos/logo-pasteur.png new file mode 100644 index 00000000..f4c0b8f6 Binary files /dev/null and b/assets/img/org-logos/logo-pasteur.png differ diff --git a/docs/details.md b/docs/details.md index ae6c3029..fd455fec 100644 --- a/docs/details.md +++ b/docs/details.md @@ -66,3 +66,40 @@ right of the page. This means to add a last modified date to a page, simply upda ```yaml set_last_modified: true ``` + +### How do I add an organizational member? + +The organizational members page will automatically populate the bottom of the +page once you modify the `_data/org-members.yaml` file and add their logo image +to `assets/img/org-logos`. +The `_data/org-members.yaml` file has three arrays for each tier we have. +If the member is a "Basic" tier member, you would add them in the `basic:` +section. +Each entry takes the following variables: + +`name` +: The full name of the member (used to fill the alt option of the img) + +`url` +: The URL the organization wants their logo to redirect if clicked + +`figure` +: The filename, with extension, of the image (do not include the path) + +`acronym` (optional) +: An acronym of the member (if included, it will be part of the alt option of + the img) + +`date_joined` [format: `YYYY-MM-DD`] +: When the member joined/paid (used to order the logos in each tier) + +`founding_member` +: Whether the member is a founding member (currently not used) + +`tier` +: The tier they paid for (also the section the entry is in) + + +Make sure you add each logo to `assets/img/org-logos` directory. +Generally, the images have been named with the following format +`logo-acronym-institution`, but this isn't strict. \ No newline at end of file