blob: a1d9293e2ba27a83d5b9195d8db2d299651d83e4 (
plain)
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
|
{{define "main"}}
<!DOCTYPE html>
<html>
<head>
<title>Action Points Journal</title>
<meta charset="utf-8" name="viewport" content="width=device-width,initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="/assets/style.css" />
<link rel="icon" sizes="64x64" href="/assets/favicon/wolfhead_negated.ico" />
<script src="https://unpkg.com/htmx.org@1.9.11" integrity="sha384-0gxUXCCR8yv9FM2b+U3FDbsKthCI66oH5IA9fHppQq9DDMHuMauqq1ZHBpJxQ0J0" crossorigin="anonymous"></script>
</head>
<body>
<div id="ancestor">
{{ if not .Username }}
<div>
{{ template "auth" }}
{{ template "recommendation" .Recommendations}}
</div>
{{ else }}
<div>
{{ template "UserScore" . }}
</div>
<div>
{{ template "showformbtn" }}
{{ template "recommendation" .Recommendations}}
</div>
{{ end }}
</div>
</body>
</html>
{{end}}
|