- 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
22 lines
633 B
HTML
22 lines
633 B
HTML
{{define "video_item"}}
|
|
<article class="result video-result">
|
|
{{if .Thumbnail}}
|
|
<div class="result_thumbnail">
|
|
<a href="{{.URL}}" target="_blank" rel="noopener noreferrer">
|
|
<img src="{{.Thumbnail}}" alt="{{.Title}}" loading="lazy">
|
|
</a>
|
|
</div>
|
|
{{end}}
|
|
<div class="result_content_wrapper">
|
|
<div class="result_header">
|
|
<a href="{{.URL}}" target="_blank" rel="noopener noreferrer">{{.Title}}</a>
|
|
</div>
|
|
<div class="result_url">
|
|
<span class="engine-badge">youtube</span>
|
|
</div>
|
|
{{if .Content}}
|
|
<p class="result_content">{{.Content}}</p>
|
|
{{end}}
|
|
</div>
|
|
</article>
|
|
{{end}}
|