aboutsummaryrefslogtreecommitdiff
path: root/views/instant_search_results.html
blob: 0472879002c5f9f5d47fbe24e35b5b1662f743f6 (plain)
1
2
3
4
5
6
7
8
{{ define "instant_search_results" }}
{{ range .results }}
<li class="collection-item search-result avatar hoverable valign-wrapper" onClick="clickSearchResult({{ .ID }})" >
	<img src="/{{ .ImagePath }}" alt="" class="circle">
	<span class="title">{{ .Name }}</span>
</li>
{{ end }}
{{ end }}