mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-14 01:32:11 +00:00
5f48ca7bbe
Use the SearchMySite API to gather results and render them in HTML on my own site. I'll open-source the Go program that generates the results soon.
28 lines
466 B
HTML
28 lines
466 B
HTML
<p>
|
|
{{ .TotalResults }} results
|
|
</p>
|
|
<ol>
|
|
{{- range .Results }}
|
|
<li>
|
|
<a href="{{ .URL }}">
|
|
<h2>
|
|
{{ if .Title -}}
|
|
{{- .Title }}
|
|
{{ else -}}
|
|
{{- .URL }}
|
|
{{- end }}
|
|
</h2>
|
|
</a>
|
|
<p>{{ printf "%.200s" .Desc }}</p>
|
|
<p>
|
|
{{ $isMatch := false }}
|
|
{{ range .Frag }}
|
|
{{ if $isMatch }}<strong>{{ end -}}
|
|
{{ printf . }}
|
|
{{- if $isMatch }}</strong>{{ end }}
|
|
{{ $isMatch = (not $isMatch) }}
|
|
{{ end }}
|
|
</p>
|
|
</li>
|
|
{{- end }}
|
|
</ol>
|