mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
69 lines
No EOL
4.4 KiB
HTML
69 lines
No EOL
4.4 KiB
HTML
{{- if not .Site.Params.disableSearch }}
|
|
{{- $assetBusting := partialCached "assetbusting.gotmpl" . }}
|
|
{{- $link := "" }}
|
|
{{- with .Site.Home.OutputFormats.Get "json" }}
|
|
{{- warnf "UNSUPPORTED usage of 'json' output format found, use 'search' instead; see https://mcshelby.github.io/hugo-theme-relearn/basics/releasenotes/6/#600" }}
|
|
{{- end }}
|
|
{{- with .Site.Home.OutputFormats.Get "searchpage" }}
|
|
{{- warnf "UNSUPPORTED usage of 'searchpage' output format found, remove it from your config; see https://mcshelby.github.io/hugo-theme-relearn/basics/releasenotes/7/#700" }}
|
|
{{- end }}
|
|
{{- if not .Site.Params.disableSearchIndex }}
|
|
{{- $url := path.Join .Site.LanguagePrefix (trim (or .Site.Params.searchIndexURL "searchindex.js") "/") }}
|
|
{{- if .IsHome }}
|
|
{{- $templateres := resources.Get "_relearn_searchindex.js" }}
|
|
{{- $resultres := $templateres | resources.ExecuteAsTemplate $url .Site.Home }}
|
|
{{- /* the following code causes Hugo to generate our file - although it is in comments */}}<!-- {{ $resultres.RelPermalink }} -->
|
|
{{- end }}
|
|
<script>
|
|
window.index_js_url={{ (printf "%s%s" $url $assetBusting) | relLangURL }};
|
|
</script>
|
|
{{- if not .Site.Params.disableSearchPage }}
|
|
{{- with .Site.GetPage "_relearn_searchpage" }}
|
|
{{- $link = partial "permalink.gotmpl" (dict "to" .) }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
<search>{{ if $link }}<form action="{{ $link }}" method="get">{{ end }}
|
|
<div class="searchbox default-animation">
|
|
{{ if $link }}<button class="search-detail" type="submit" title="{{ T "Search" }} (CTRL+ALT+f)">{{ end }}<i class="fas fa-search"{{ if not $link }} title="{{ T "Search" }} (CTRL+ALT+f)"{{ end }}></i>{{ if $link }}</button>{{ end }}
|
|
<label class="a11y-only" for="R-search-by">{{ T "Search" }}</label>
|
|
<input data-search-input id="R-search-by" name="search-by" class="search-by" type="search" placeholder="{{ T "Search-placeholder" }}">
|
|
<button class="search-clear" type="button" data-search-clear="" title="{{ T "Clear-search" }}"><i class="fas fa-times" title="{{ T "Clear-search" }}"></i></button>
|
|
</div>
|
|
{{ if $link }}</form>{{ end }}</search>
|
|
{{- $pageBaseLang := replaceRE "([a-z]+).*" "${1}" .Page.Language.LanguageCode }}
|
|
{{- $contentlangs := (union (slice | append (.Site.Params.additionalContentLanguage | default slice)) (slice $pageBaseLang)) }}
|
|
{{- $quotedcontentlangs := slice }}
|
|
{{- $missingcontentlangs := slice }}
|
|
{{- range $contentlangs }}
|
|
{{- $f := printf "/static/js/lunr/lunr.%s.min.js" . }}
|
|
{{- if partialCached "_relearn/fileExists.gotmpl" $f $f }}
|
|
{{- $quotedcontentlangs = $quotedcontentlangs | append (printf "'%s'" .) }}
|
|
{{- else }}
|
|
{{- $missingcontentlangs = $missingcontentlangs | append . }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- $contentlangs = $contentlangs | complement $missingcontentlangs }}
|
|
<script>
|
|
var contentLangs=[{{ delimit $quotedcontentlangs ", " | safeJS }}];
|
|
</script>
|
|
<script src="{{"js/auto-complete.js" | relURL}}{{ $assetBusting }}" defer></script>
|
|
<script src="{{"js/lunr/lunr.min.js" | relURL}}{{ $assetBusting }}" defer></script>
|
|
<script src="{{"js/lunr/lunr.stemmer.support.min.js" | relURL}}{{ $assetBusting }}" defer></script>
|
|
<script src="{{"js/lunr/lunr.multi.min.js" | relURL}}{{ $assetBusting }}" defer></script>
|
|
{{- $tinyseg := false }}
|
|
{{- $wordcut := false }}
|
|
{{- range $contentlangs }}
|
|
{{- if and (not $tinyseg) (or (eq . "ja")) }}
|
|
{{- $tinyseg = true }}
|
|
<script src="{{"js/lunr/tinyseg.js" | relURL}}{{ $assetBusting }}" defer></script>
|
|
{{- end }}
|
|
{{- if and (not $wordcut) (or (eq . "hi") (eq . "th")) }}
|
|
{{- $wordcut = true }}
|
|
<script src="{{"js/lunr/wordcut.js" | relURL}}{{ $assetBusting }}" defer></script>
|
|
{{- end }}
|
|
{{- $file := (printf "js/lunr/lunr.%s.min.js" .) }}
|
|
<script src="{{ $file | relURL}}{{ $assetBusting }}" defer></script>
|
|
{{- end }}
|
|
<script src="{{ "js/search.js" | relURL }}{{ $assetBusting }}" defer></script>
|
|
{{- end }} |