Skip to content

Commit 4383672

Browse files
Changed ordering of fields
1 parent eb24cd5 commit 4383672

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

layouts/shortcodes/person.html

+14-14
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
<span class="card-name">{{ $person.name }}</span><br />
88
<span class="card-job">{{ $person.job }}</span>
99
<ul class="card-icons">
10-
{{ with $person.github }}
10+
{{ with $person.web }}
1111
<li>
12-
<a href="https://github.com/{{ . }}">
13-
<img src="/icons/github.svg" alt="GitHub" />
12+
<a href="{{ . }}">
13+
<img src="/icons/home.svg" alt="Homepage" />
1414
</a>
1515
</li>
16-
{{end }}
17-
16+
{{ end }}
17+
1818
{{ with $person.orcid }}
1919
<li>
2020
<a href="{{ . }}">
@@ -23,10 +23,18 @@
2323
</li>
2424
{{end }}
2525

26+
{{ with $person.github }}
27+
<li>
28+
<a href="https://github.com/{{ . }}">
29+
<img src="/icons/github.svg" alt="GitHub" />
30+
</a>
31+
</li>
32+
{{end }}
33+
2634
{{ with $person.bluesky }}
2735
<li>
2836
<a href="https://bsky.app/profile/{{ . }}">
29-
<img src="/icons/x.svg" alt="Bluesky" />
37+
<img src="/icons/bluesky.svg" alt="Bluesky" />
3038
</a>
3139
</li>
3240
{{ end }}
@@ -38,13 +46,5 @@
3846
</a>
3947
</li>
4048
{{ end }}
41-
42-
{{ with $person.web }}
43-
<li>
44-
<a href="{{ . }}">
45-
<img src="/icons/home.svg" alt="Homepage" />
46-
</a>
47-
</li>
48-
{{ end }}
4949
</ul>
5050
</div>

0 commit comments

Comments
 (0)