1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-19 20:02:10 +00:00
seirdy.one/dynamic/search-results.html
2022-06-08 17:30:15 -07:00

30 lines
525 B
HTML

<p>
{{ .TotalResults }} results
</p>
<ol>
{{- range .Results }}
<li>
<h2>
<a href="{{ .URL }}">
{{ if .Title -}}
{{- .Title }}
{{ else -}}
{{- .URL }}
{{- end }}
</a>
</h2>
<p>{{ printf "%.200s" .Desc }}</p>
<p>
<q cite="{{ .URL }}">
{{- $isMatch := false -}}
{{- range .Frag -}}
{{- if $isMatch }}<strong>{{ end -}}
{{- printf . -}}
{{- if $isMatch }}</strong>{{ end -}}
{{- $isMatch = (not $isMatch) -}}
{{- end -}}
</q>
</p>
</li>
{{- end }}
</ol>