aboutsummaryrefslogtreecommitdiff
path: root/templates/group_repos.html.tmpl
blob: 3166565f2ef5db714721e12a8e210da35e83142b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{{- define "group_repos" -}}
<!DOCTYPE html>
<html lang="en">
	<head>
		{{ template "head_common" . }}
		<title>Repos in {{ .group_name }} &ndash; 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>
				{{- end }}
			</tbody>
			</table>
		</div>
		<footer>
			{{ template "footer" . }}
		</footer>
	</body>
</html>
{{- end -}}