1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-04-07 19:26:47 +00:00

Title search: Fix a bug and show No results instead of empty list when no results

This commit is contained in:
Timur Ismagilov 2022-04-24 11:15:25 +03:00
parent 59deabd0d1
commit 4f50bd54fe

View File

@ -3,13 +3,17 @@
{{define "body"}}
<main class="main-width title-search">
<h1>{{block "search results for" .Query}}Search results for {{.}}{{end}}</h1>
<p>{{block "search desc" .}}Every hypha name has been compared with the query. Hyphae that have matched the query are listed below.{{end}}</p>
<ul class="title-search__results">
{{range .Results}}
<li class="title-search__entry">
<a class="title-search__link wikilink" href="/hypha/{%s hyphaName %}">{{beautifulName .}}</a>
</li>
{{end}}
</ul>
{{if len .Results}}
<p>{{block "search desc" .}}Every hypha name has been compared with the query. Hyphae that have matched the query are listed below.{{end}}</p>
<ul class="title-search__results">
{{range .Results}}
<li class="title-search__entry">
<a class="title-search__link wikilink" href="/hypha/{{.}}">{{beautifulName .}}</a>
</li>
{{end}}
</ul>
{{else}}
<p>{{block "search no results" .}}No results{{end}}</p>
{{end}}
</main>
{{end}}