blob: 50cd489741671d925b6e556fbf61fb4fb7589463 (
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
35
36
37
38
39
40
41
42
43
|
{{- define "index" -}}
<!DOCTYPE html>
<html lang="en">
<head>
{{ template "head_common" . }}
<title>Index – Lindenii Forge</title>
</head>
<body class="index">
{{ template "header" . }}
<div class="padding-wrapper">
<h1>Lindenii Forge</h1>
<h2>
Groups
</h2>
<ul>
{{- range .groups }}
<li>
<a href="{{ . }}/:/repos/">{{ . }}</a>
</li>
{{- end }}
</ul>
<h2>
Info
</h2>
<table class="wide">
<tbody>
<tr>
<th scope="row">SSH Public Key</th>
<td><code>{{ .global.server_public_key_string }}</code></td>
</tr>
<tr>
<th scope="row">SSH Fingerprint</th>
<td><code>{{ .global.server_public_key_fingerprint }}</code></td>
</tr>
</tbody>
</table>
</div>
<footer>
{{ template "footer" . }}
</footer>
</body>
</html>
{{- end -}}
|