- New CSS: complete design system with CSS variables, modern color palette - Homepage: full-viewport hero with centered search, logo, tagline - Result cards: rounded, shadowed, with favicons via Google Favicon API - Layout: sidebar + results grid, responsive - Typography: proper font stack, variable weights - Settings panel: polished popover with animations - Autocomplete: modern dropdown with keyboard nav - Dark mode: full color palette via data-theme attribute - Favicon: clean search icon SVG
15 lines
590 B
HTML
15 lines
590 B
HTML
{{define "result_item"}}
|
|
<article class="result">
|
|
<div class="result_header">
|
|
<a href="{{.URL}}" target="_blank" rel="noopener noreferrer">{{.Title}}</a>
|
|
</div>
|
|
<div class="result_url">
|
|
<img class="result-favicon" src="https://www.google.com/s2/favicons?domain={{.URL | urlquery}}&sz=32" alt="" loading="lazy" onerror="this.style.display='none'">
|
|
<a href="{{.URL}}" target="_blank" rel="noopener noreferrer">{{.URL}}</a>
|
|
<span class="engine-badge">{{.Engine}}</span>
|
|
</div>
|
|
{{if .Content}}
|
|
<p class="result_content">{{.Content}}</p>
|
|
{{end}}
|
|
</article>
|
|
{{end}}
|