hugo-theme-stack-stars/layouts/page/search.html
2020-10-04 15:45:23 +02:00

27 lines
No EOL
996 B
HTML

{{ define "body-class" }}template-search{{ end }}
{{ define "head" }}
{{- with .OutputFormats.Get "json" -}}
<link rel="preload" href="{{ .Permalink }}" as="fetch" crossorigin="anonymous">
{{- end -}}
{{ end }}
{{ define "main" }}
<form action="{{ .Permalink }}" class="search-form"{{ with .OutputFormats.Get "json" -}} data-json="{{ .Permalink }}"{{- end }}>
<p>
<label>Keyword</label>
<input name="keyword" placeholder="Type something..." />
</p>
<button title="Search">
{{ (resources.Get "icons/search.svg").Content | safeHTML }}
</button>
</form>
<h3 class="search-result--title"></h3>
<div class="search-result--list article-list--compact"></div>
{{- $opts := dict "minify" hugo.IsProduction "JSXFactory" "createElement" -}}
{{- $searchScript := resources.Get "ts/search.tsx" | js.Build $opts -}}
<script type="text/javascript" src="{{ $searchScript.RelPermalink }}" defer></script>
{{ partialCached "footer/footer" . }}
{{ end }}