All checks were successful
Build and publish the docker image / build (push) Successful in 41s
Signed-off-by: ngn <ngn@ngn.tf>
28 lines
557 B
HTML
28 lines
557 B
HTML
<html>
|
|
<head>
|
|
{{template "head" .}}
|
|
<link rel="stylesheet" href="/css/translation.css">
|
|
</head>
|
|
<body>
|
|
{{template "navbar" .}}
|
|
<main>
|
|
{{template "search" .}}
|
|
|
|
{{if not .suggestions}}
|
|
{{if not .fields}}
|
|
<h3 class="result">No results :(</h3>
|
|
{{end}}
|
|
{{end}}
|
|
|
|
{{if .suggestions}}
|
|
<h3 class="result">Did you mean...</h3>
|
|
{{range .suggestions}}
|
|
<p>{{.}}</p>
|
|
{{end}}
|
|
{{else}}
|
|
{{template "table" .}}
|
|
{{end}}
|
|
</main>
|
|
</body>
|
|
</html>
|