Aiken Harris d7a8c1bac0
All checks were successful
Builds / ExectOS WebSite (push) Successful in 11s
Fix typo
2025-08-17 18:59:54 +02:00

24 lines
578 B
HTML

<table>
<thead>
<tr>
<th>Nickname</th>
<th>Name</th>
<th>Role</th>
</tr>
</thead>
<tbody>
{{ range .Site.Data.authors }}
<tr>
<td class="nick-cell">
<img src="https://www.gravatar.com/avatar/{{ .email | md5 }}?s=50&d=identicon" class="avatar" />
<a href="https://git.codingworkshop.eu.org/xt-sys/exectos/commits/branch/master/search?q=author%3A{{ .nick }}">
<span>{{ .nick }}</span>
</a>
</td>
<td>{{ .name }}</td>
<td>{{ .role }}</td>
</tr>
{{ end }}
</tbody>
</table>