searchhut/templates/search.html
2022-07-09 17:48:52 +02:00

16 lines
447 B
HTML

{{template "head.html" .}}
<header>
{{template "form.html" .}}
</header>
<main>
{{range .Results}}
<div class="result">
<a href="{{.Page.Url}}" rel="noopener nofollow" class="title">{{.Page.Title}}</a>
<a href="{{.Page.Url}}" rel="noopener nofollow" class="url"><small>{{.Page.Url}}</small></a>
{{if .Page.Excerpt}}
<p class="excerpt">{{.Page.Excerpt}}</p>
{{end}}
</div>
{{end}}
</main>
{{template "footer.html" .}}