File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change 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" >
4440 {% endif %}
4541 {% endfor %}
4642</div >
47- {% endfor %}
You can’t perform that action at this time.
0 commit comments