2022-04-02 11:00:10 +03:00
|
|
|
|
{{define "search:"}}Search: {{.}}{{end}}
|
|
|
|
|
{{define "title"}}{{template "search:" .Query}}{{end}}
|
|
|
|
|
{{define "body"}}
|
2022-05-07 01:50:49 +05:00
|
|
|
|
<main class="main-width">
|
2022-04-02 11:00:10 +03:00
|
|
|
|
<h1>{{block "search results for" .Query}}Search results for ‘{{.}}’{{end}}</h1>
|
2022-12-09 18:27:47 +03:00
|
|
|
|
{{if .MatchedHyphaName}}
|
|
|
|
|
<p>{{block "go to hypha" .}}Go to hypha <a class="wikilink{{if .HasExactMatch | not}} wikilink_new{{end}}" href="/hypha/{{.MatchedHyphaName}}">{{beautifulName .MatchedHyphaName}}</a>.{{end}}</p>
|
|
|
|
|
{{end}}
|
2022-04-24 11:15:25 +03:00
|
|
|
|
{{if len .Results}}
|
2022-05-07 01:50:49 +05:00
|
|
|
|
<ol>
|
2022-04-24 11:15:25 +03:00
|
|
|
|
{{range .Results}}
|
2022-05-07 01:50:49 +05:00
|
|
|
|
<li>
|
|
|
|
|
<a class="wikilink" href="/hypha/{{.}}">{{beautifulName .}}</a>
|
2022-04-24 11:15:25 +03:00
|
|
|
|
</li>
|
|
|
|
|
{{end}}
|
2022-04-24 15:42:10 +03:00
|
|
|
|
</ol>
|
2022-04-24 11:15:25 +03:00
|
|
|
|
{{else}}
|
|
|
|
|
<p>{{block "search no results" .}}No results{{end}}</p>
|
|
|
|
|
{{end}}
|
2022-04-21 19:05:17 +03:00
|
|
|
|
</main>
|
2022-04-02 11:00:10 +03:00
|
|
|
|
{{end}}
|