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

                      
                
              
                                              
                                                            



                                             
                                      

                             
                                                    
                                            
                                                                                      



                                             


                                                 
               

           
{{- define "index" -}}
<!DOCTYPE html>
<html lang="en">
	<head>
		{{ template "head_common" . }}
		<title>Groups &ndash; Lindenii Forge</title>
	</head>
	<body class="index">
		<div class="padding-wrapper">
			<h1>
				Groups
			</h1>
			<ul>
				{{- range .groups }}
					<li>
						<a href="g/{{ . }}/repos/">{{ . }}</a>
					</li>
				{{- end }}
			</ul>
		</div>
		<footer>
			{{ template "footer" . }}
		</footer>
	</body>
</html>
{{- end -}}