Skip to content

Commit 009a773

Browse files
authored
Merge pull request #59 from uscms-software-and-computing/rct225-people-by-wbs-area
Rct225 people by wbs area
2 parents 8018bf5 + 9b37431 commit 009a773

File tree

8 files changed

+42
-17
lines changed

8 files changed

+42
-17
lines changed

Diff for: _data/orgs/blueprint.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
Name: Blueprint
22
personnel:
3+
- davidlange6

Diff for: _data/orgs/level1.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: Management
22
personnel:
33
- o_gutsche
4-
- m_votava
54
- tulika176
6-
5+
- m_votava

Diff for: _data/orgs/project.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
name: Project
22
personnel:
3-
- rtuck225
3+
- rct225

Diff for: _data/people/PerilousApricot.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Andrew Melo
22
shortname: PerilousApricot
3-
title: Facilities Co-Manager
3+
title: Facilities Co-Leader
44
active: true
55
institution: Vanderbilt University
66
website:
77
photo: /assets/images/team/Andrew_Melo.jpg
8-
presentations:
8+
presentations:

Diff for: _includes/wbs_list.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{% assign wbs_list = site.data.orgs | keys | sort %}

Diff for: _layouts/people.html

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
<div class="presentation toppagelinks">
99
<div class="inner">
1010
Team:
11-
<a href="/about/team.html">by institution</a>
11+
<a href="/about/team.html">by area</a>
12+
&#8226;
13+
<a href="/about/team_by_institution.html">by institution</a>
1214
&#8226;
1315
<a href="/about/team_alphabetical.html">by name</a>.
1416
</div>
@@ -22,4 +24,4 @@
2224

2325

2426
</body>
25-
</html>
27+
</html>

Diff for: pages/about/team.md

+5-10
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,20 @@ title: US CMS S&C Team
66

77
{% include image_caption.html url="../assets/images/210113 - Org Chart.png" alt="US CMS S&C Org Chart" description="" %}
88

9-
{% include institution_list.html %}
10-
{% assign univs = institution_list | hash_fetch: site.data.institutions %}
9+
{% include wbs_list.html %}
10+
{% assign areas = wbs_list | hash_fetch: site.data.orgs %}
1111

1212
<h1>Full Team</h1><br>
1313

1414
<div class="container-fluid">
1515
<div class="row">
16-
{% for univ in univs %}
17-
{% assign members = univ.personnel | hash_fetch: site.data.people
18-
| where_exp:"item", "item.active and item.hidden != true"
19-
| last_name_sort: "name" %}
16+
{% for area in areas %}
17+
{% assign members = area.personnel | hash_fetch: site.data.people
18+
| where_exp:"item", "item.active and item.hidden != true" %}
2019

2120
{% for person in members %}
2221
{% include standard_person_card.md person=person %}
2322
{% endfor %}
2423
{% endfor %}
2524
</div>
2625
</div>
27-
28-
29-
30-

Diff for: pages/about/team_by_institution.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
permalink: /about/team_by_institution.html
3+
layout: people
4+
title: US CMS S&C Team
5+
---
6+
7+
{% include image_caption.html url="../assets/images/210113 - Org Chart.png" alt="US CMS S&C Org Chart" description="" %}
8+
9+
{% include institution_list.html %}
10+
{% assign univs = institution_list | hash_fetch: site.data.institutions | sort_natural: "name" %}
11+
12+
<h1>Full Team</h1><br>
13+
14+
<div class="container-fluid">
15+
<div class="row">
16+
{% for univ in univs %}
17+
{% assign members = univ.personnel | hash_fetch: site.data.people
18+
| where_exp:"item", "item.active and item.hidden != true"
19+
| last_name_sort: "name" %}
20+
21+
22+
{% for person in members %}
23+
{% include standard_person_card.md person=person %}
24+
{% endfor %}
25+
{% endfor %}
26+
</div>
27+
</div>

0 commit comments

Comments
 (0)