1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-12 05:20:26 +00:00
mycorrhiza/misc/view_title_search.html

19 lines
635 B
HTML
Raw Normal View History

{{define "search:"}}Search: {{.}}{{end}}
{{define "title"}}{{template "search:" .Query}}{{end}}
{{define "body"}}
2022-05-06 20:50:49 +00:00
<main class="main-width">
<h1>{{block "search results for" .Query}}Search results for {{.}}{{end}}</h1>
{{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>
{{range .Results}}
2022-05-06 20:50:49 +00:00
<li>
<a class="wikilink" href="/hypha/{{.}}">{{beautifulName .}}</a>
</li>
{{end}}
</ol>
{{else}}
<p>{{block "search no results" .}}No results{{end}}</p>
{{end}}
</main>
{{end}}