Lindenii Project Forge
Commit info | |
---|---|
ID | 1e0044ea1f612a0038067bd03adf4e519b34c57b |
Author | Runxi Yu<me@runxiyu.org> |
Author date | Thu, 13 Feb 2025 11:18:30 +0800 |
Committer | Runxi Yu<me@runxiyu.org> |
Committer date | Thu, 13 Feb 2025 11:18:30 +0800 |
Actions | Get patch |
group_repos: Fix table rows
{{- define "group_repos" -}} <!DOCTYPE html> <html lang="en"> <head> {{ template "head_common" . }} <title>Repos in {{ .group_name }} – Lindenii Forge</title> </head> <body class="group-repos"> {{ template "header" . }} <div class="padding-wrapper"> <table class="wide"> <thead> <tr> <th colspan="2" class="title-row">Repos in {{ .group_name }}</th> </tr> </thead> <tbody> {{- range .repos }}
<td> <a href="{{ .Name }}/">{{ .Name }}</a> </td> <td> {{ .Description }} </td>
<tr> <td> <a href="{{ .Name }}/">{{ .Name }}</a> </td> <td> {{ .Description }} </td> </tr>
{{- end }} </tbody> </table> </div> <footer> {{ template "footer" . }} </footer> </body> </html> {{- end -}}