Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds first organizational member #1594

Merged
merged 3 commits into from
Oct 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions _data/org-members.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
- name: "Center for Research Computing - University of Notre Dame"
url: https://crc.nd.edu/
figure: logo-crc-notre.png
acronym: "CRC"
date_joined: 2024-10-10
founding_member: true
tier: "Standard"
7 changes: 7 additions & 0 deletions _includes/org-member-card.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<div class="card d-flex text-center border-0 m-0">
<img class="card-img-top"
src="{{ site.baseurl }}/assets/img/org-logos/{{ item.figure }}"
alt="{{ item.name }}{%-if item.acronym -%}&nbsp;({{ item.acronym }}){%- endif -%}"
>
<a href="{{ item.url }}" class="stretched-link" target="_blank"></a>
</div>
Binary file added assets/img/org-logos/logo-crc-notre.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 2 additions & 3 deletions pages/about/election.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ election_results: 2024-12-20T00:00:00 +0000
---

{% capture nowunix %}{{'now' | date: '%s'}}{% endcapture %}
{% capture nom_open %}{{nominations_open | date: '%s'}}{% endcapture %}

{% capture nom_open %}{{page.nominations_open | date: '%s'}}{% endcapture %}
{% if nowunix < nom_open %}
**Elections are open! Please see the "Nominations and Candidate Information"
section to apply for or nominate someone for the US-RSE Steering Committee**
Expand Down Expand Up @@ -108,7 +107,7 @@ Alternatively, if you know of a member who you think would make a good
candidate, you can submit a nomination for someone else, who will be invited to run.
All US-RSE members in good standing are eligible to be nominated as candidates.

{% if nowunix < nom_open %}
{% if nowunix <= nom_open %}
### Nomination Form

The nomination form can be found [HERE](https://docs.google.com/forms/d/e/1FAIpQLSdymmrCfE3QgKmeOmPUSeaDhEEG2z0adxfmiNGHbO3C6nv1YA/viewform). Please fill this form for self-nomination OR if you are nominating someone else.
Expand Down
12 changes: 12 additions & 0 deletions pages/get_involved/organizational_membership.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,18 @@ model **for organizations joining between August 1 and November 30**.
Table 3: Membership fees
{: style="font-size: 0.7em; font-style: italic" }

## Current Organizational Founding Members

### Standard Level

<div class="row justify-content-center">
{%- assign sorted = site.data.org-members | sort: "date_joined" -%}
{%- for item in sorted -%}
<div class="col-6 col-md-4 align-self-center p-1">
{% include org-member-card.html %}
</div>
{%- endfor -%}
</div>

[^1]: US-RSE is a fiscally sponsored project by Community Initiatives. https://communityinitiatives.org/
[^2]: Please contact the Executive Director for initiating the process
Expand Down