Skip to content

Commit 3aebc25

Browse files
committed
Merge remote-tracking branch 'origin/dev'
2 parents e994212 + 9215610 commit 3aebc25

3 files changed

Lines changed: 3 additions & 7 deletions

File tree

assets/author.md.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: "{{ author.name }}"
66
<img src="/{{ author.avatar }}" class="md-author" alt="{{ author.name }}">
77
<div class="author-profile-info">
88
<h1>{{ author.name }}</h1>
9-
<p>{{ author.description }}</p>
9+
<p>{{ author.description if author.team != "Alumni" else "Graphcore Alumni" }}</p>
1010
</div>
1111
</div>
1212

assets/custom.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -447,4 +447,5 @@ html {
447447
font-size: 1.1em;
448448
color: #666;
449449
margin-top: 0;
450+
margin-left: 0.15em;
450451
}

pages/about.md.j2

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,9 @@ and
2727

2828
## Meet the Team
2929

30-
{% for team in ["Research", "Applied AI"] %}
31-
{% if team != "Research" %}
32-
<h3>{{ team }}</h3>
33-
{% endif %}
3430
<div class="about-authors-grid">
3531
{% for id, author in data.authors.items() | sort(attribute='1.name') %}
36-
{% if author.team == team %}
32+
{% if author.team != "Alumni" %}
3733
<div class="author-card">
3834
<a href="/author/{{ id }}">
3935
<img src="/{{ author.avatar }}" alt="{{ author.name }}" class="md-author">
@@ -44,4 +40,3 @@ and
4440
{% endif %}
4541
{% endfor %}
4642
</div>
47-
{% endfor %}

0 commit comments

Comments
 (0)