Skip to content

Commit 8ad8a62

Browse files
committed
Make people avatars point to the person page on the website, rather than their GitHub
1 parent 177fca9 commit 8ad8a62

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

templates/governance/all-team-members.html.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{{#*inline "member"}}
22
<div class="w-100 w-25-l mb3 flex flex-row items-center">
3-
<a class="mr4 w3 h3 flex-shrink-0" href="https://github.com/{{member.github}}">
3+
<a class="mr4 w3 h3 flex-shrink-0" href="{{baseurl}}/governance/people/{{member.github}}">
44
<img class="w-100 h-100 bg-white br2"
55
src="https://avatars.githubusercontent.com/{{member.github}}"
66
alt="{{member.name}}">

templates/governance/archived-team.html.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<div class="flex flex-column flex-row-l flex-wrap-l justify-start">
1616
{{#each team.alumni as |member|}}
1717
<div class="w-100 w-33-l mb3 flex flex-row items-center">
18-
<a class="mr4 w3 h3 flex-shrink-0" href="https://github.com/{{member.github}}">
18+
<a class="mr4 w3 h3 flex-shrink-0" href="{{../baseurl}}/governance/people/{{member.github}}">
1919
<img class="w-100 h-100 bg-white br2"
2020
src="https://avatars.githubusercontent.com/{{member.github}}"
2121
alt="{{member.name}}">

templates/governance/group-team.html.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<div class="flex flex-column flex-row-l flex-wrap-l justify-start">
5454
{{#each team.members as |member|}}
5555
<div class="flex flex-row w-100 w-50-l mb4 p3">
56-
<a class="mr4 w4 h4 flex-shrink-0" href="https://github.com/{{member.github}}">
56+
<a class="mr4 w4 h4 flex-shrink-0" href="{{../baseurl}}/governance/people/{{member.github}}">
5757
<img class="w-100 h-100 bg-white br2" src="https://avatars.githubusercontent.com/{{member.github}}"
5858
alt="{{member.name}}">
5959
</a>
@@ -87,7 +87,7 @@
8787
<div class="flex flex-column flex-row-l flex-wrap-l justify-start">
8888
{{#each team.alumni as |member|}}
8989
<div class="w-100 w-33-l mb3 flex flex-row items-center">
90-
<a class="mr4 w3 h3 flex-shrink-0" href="https://github.com/{{member.github}}">
90+
<a class="mr4 w3 h3 flex-shrink-0" href="{{../baseurl}}/governance/people/{{member.github}}">
9191
<img class="w-100 h-100 bg-white br2" src="https://avatars.githubusercontent.com/{{member.github}}"
9292
alt="{{member.name}}">
9393
</a>

0 commit comments

Comments
 (0)