aboutsummaryrefslogblamecommitdiff
path: root/templates/group_repos.tmpl
blob: 8c95c916c8e67328d60b2955e9a3df7e19939efb (plain) (tree)
1
2
3
4
5
6
7
8
9
                            
               
                
              
                                              
                                                                                           
               
                                  
                                         
                                             






                                                                                                         
                                                   







                                                                                              
                                          

                                
                      


                                                 
               

           
{{- define "group_repos" -}}
<!DOCTYPE html>
<html lang="en">
	<head>
		{{ template "head_common" . }}
		<title>Repos in {{ .group_name }} &ndash; {{ .global.forge_title }}</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 }}
					<tr>
						<td>
							<a href="{{ .Name }}/">{{ .Name }}</a>
						</td>
						<td>
							{{ .Description }}
						</td>
					</tr>
				{{- end }}
			</tbody>
			</table>
		</div>
		<footer>
			{{ template "footer" . }}
		</footer>
	</body>
</html>
{{- end -}}