tren/views/translate.html
ngn 76db84f69c
All checks were successful
Build and publish the docker image / build (push) Successful in 41s
fix css import
Signed-off-by: ngn <ngn@ngn.tf>
2025-04-05 10:16:21 +03:00

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>