{{ define "content" }}

{{ .locale.Tr "gist.list.search-results" }}

{{ .nbHits }} {{ .locale.Tr "gist.search.found" }}
{{ if .searchQuery }}

{{ .locale.Tr "gist.list.search-for" }} {{ .searchQuery }}

{{ end }}
{{ if ne (len .gists) 0 }}
{{ range $gist := .gists }} {{ template "gist" (dict "gist" $gist "c" $.c "locale" $.locale "DisableGravatar" $.DisableGravatar "currentStyle" $.currentStyle) }} {{ end }} {{ template "pagination" . }}
{{ if ne (len .langs) 0 }} {{ end }}
{{ else }}

{{ .locale.Tr "gist.search.no-results" }}

{{ end }}
{{ end }}