First commit. Merge different parts into one repo.

This commit is contained in:
2025-11-23 00:19:57 +05:30
commit 52398e3bb3
36 changed files with 654743 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{{ define "search" }}
{{ template "header" . }}
<section class="content results">
{{ if not .Data.Results.Entries }}
<h2>{{ .L.T "public.noResultsTitle" }}</h2>
<p>
{{ .L.T "public.noResults" }}
</p>
{{ else }}
{{ template "results" . }}
{{ end }}
</section>
{{ template "footer" . }}
{{ end }}