-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merges pull request #1609 from exoticDFT/add/org-purdue-rcac
Adds org member Purdue RCAC
- Loading branch information
Showing
5 changed files
with
60 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
- 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" | ||
basic: | ||
|
||
standard: | ||
- 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" | ||
- name: "Rosen Center for Advanced Computing - Purdue" | ||
url: https://www.rcac.purdue.edu/ | ||
figure: logo-rcac-purdue.png | ||
acronym: "RCAC" | ||
date_joined: 2024-10-28 | ||
founding_member: true | ||
tier: "Standard" | ||
background: rgba(0, 0, 0, 0.7) | ||
|
||
premier: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<div class="row justify-content-center"> | ||
{%- for item in org_tier -%} | ||
<div class="col-6 col-md-4 align-self-center p-1"> | ||
{% include org-member-card.html %} | ||
</div> | ||
{%- endfor -%} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
<div class="card d-flex text-center border-0 m-0"> | ||
<img class="card-img-top" | ||
<div | ||
class="card d-flex text-center border-0 m-0" | ||
{% if item.background -%} | ||
style="background-color: {{ item.background }}" | ||
{%- endif -%} | ||
> | ||
<img class="card-img" | ||
src="{{ site.baseurl }}/assets/img/org-logos/{{ item.figure }}" | ||
alt="{{ item.name }}{%-if item.acronym -%} ({{ item.acronym }}){%- endif -%}" | ||
> | ||
<a href="{{ item.url }}" class="stretched-link" target="_blank"></a> | ||
<div class="card-img-overlay"> | ||
<a href="{{ item.url }}" class="stretched-link" target="_blank"></a> | ||
</div> | ||
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters