Fix author links in the proposals lists (#1997)

Links were broken since the upgrade of the hugo version.

Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
pull/2010/head
Kévin Commaille 2 days ago committed by GitHub
parent d67dd88457
commit 69e162e5fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1 @@
Fix relative URLs when serving the specification with a custom `baseURL`.

@ -68,8 +68,8 @@
<td>{{ .title }}</td> <td>{{ .title }}</td>
<td>{{ .created_at }}</td> <td>{{ .created_at }}</td>
<td>{{ .updated_at }}</td> <td>{{ .updated_at }}</td>
<td>{{ with $docs_links }}{{ $docs_links }}{{ end }}</td> <td>{{ with $docs_links }}{{ $docs_links | safeHTML }}{{ end }}</td>
<td>{{ $authors }}</td> <td>{{ $authors | safeHTML }}</td>
<td>{{ with .shepherd }}<a href="https://github.com/{{ . }}">@{{ . }}</a>{{ end }}</td> <td>{{ with .shepherd }}<a href="https://github.com/{{ . }}">@{{ . }}</a>{{ end }}</td>
</tr> </tr>
{{ end }} {{ end }}

Loading…
Cancel
Save