searchhut/templates/search.html

17 lines
447 B
HTML
Raw Normal View History

2022-07-09 17:48:52 +02:00
{{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" .}}