2022-04-02 08:00:10 +00:00
|
|
|
|
{{define "search:"}}Search: {{.}}{{end}}
|
|
|
|
|
{{define "title"}}{{template "search:" .Query}}{{end}}
|
|
|
|
|
{{define "body"}}
|
2022-05-06 20:50:49 +00:00
|
|
|
|
<main class="main-width">
|
2022-04-02 08:00:10 +00:00
|
|
|
|
<h1>{{block "search results for" .Query}}Search results for ‘{{.}}’{{end}}</h1>
|
2022-04-24 08:15:25 +00:00
|
|
|
|
{{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>
|
2022-05-06 20:50:49 +00:00
|
|
|
|
<ol>
|
2022-04-24 08:15:25 +00:00
|
|
|
|
{{range .Results}}
|
2022-05-06 20:50:49 +00:00
|
|
|
|
<li>
|
|
|
|
|
<a class="wikilink" href="/hypha/{{.}}">{{beautifulName .}}</a>
|
2022-04-24 08:15:25 +00:00
|
|
|
|
</li>
|
|
|
|
|
{{end}}
|
2022-04-24 12:42:10 +00:00
|
|
|
|
</ol>
|
2022-04-24 08:15:25 +00:00
|
|
|
|
{{else}}
|
|
|
|
|
<p>{{block "search no results" .}}No results{{end}}</p>
|
|
|
|
|
{{end}}
|
2022-04-21 16:05:17 +00:00
|
|
|
|
</main>
|
2022-04-02 08:00:10 +00:00
|
|
|
|
{{end}}
|