Lindenii Project Forge
Login

/templates/index.html.tmpl (raw)

{{- 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 -}}