search.htm 420 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html>
  3. {{template "head" . }}
  4. <main>
  5. {{template "header" . }}
  6. {{if ne .Templates.Search.List ""}}
  7. {{if ne .Templates.Search.Content.Total 0}}
  8. <h1>Results by request '{{.QueryRaw}}': {{.Templates.Search.Content.Total}}</h1>
  9. {{end}}
  10. {{.Templates.Search.List}}
  11. {{else}}
  12. <p>No results :(</p>
  13. {{end}}
  14. </main>
  15. </html>