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

                                             
                                                  



                                                   
                                                                              



                                             


                                                 
               

           
{{- 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-index">
		<div class="padding-wrapper">
			<h1>
			Repos in {{ .group_name }}
			</h1>
			<ul>
				{{- range .repos }}
					<li>
						<a href="{{ . }}/">{{ . }}</a>
					</li>
				{{- end }}
			</ul>
		</div>
		<footer>
			{{ template "footer" . }}
		</footer>
	</body>
</html>
{{- end -}}