Andrew Woodlee
4b382bddd9
* Getting environment variables and passwords from Vault (not tested yet) * Vault configuration to config (not tested yet) * Ability to run scripts from file on local machine on the remote host * Ability to get ouput in the notification of a list for individual commands or all commands * Make SSH connections close after all commands have been run; reuse previous connections if needed
48 lines
3.2 KiB
HTML
48 lines
3.2 KiB
HTML
{{- $link := "" }}
|
|
{{- if or (.Site.Home.OutputFormats.Get "JSON") (.Site.Home.OutputFormats.Get "SEARCH") }}
|
|
{{- with .Site.Home.OutputFormats.Get "SEARCHPAGE" }}
|
|
{{- $link = partial "relLangPrettyUglyURL.hugo" (dict "to" .) }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- $c:="" }} {{ if $link }}<form action="{{ $link }}" method="get">{{ end }}<div class="searchbox default-animation">
|
|
{{ if $link }}<button 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="search-by">{{ T "Search" }}</label>
|
|
<input data-search-input id="search-by" name="search-by" class="search-by" type="search" placeholder="{{ T "Search-placeholder" }}">
|
|
<span data-search-clear=""><i class="fas fa-times"></i></span>
|
|
</div>{{ if $link }}</form>{{ end }}
|
|
{{- $assetBusting := not .Site.Params.disableAssetsBusting }}
|
|
{{- $pageBaseLang := replaceRE "([a-z]+).*" "${1}" .Page.Lang }}
|
|
{{- $contentlangs := (union (slice | append .Site.Params.additionalContentLanguage) (slice $pageBaseLang)) }}
|
|
{{- $quotedcontentlangs := slice }}
|
|
{{- $missingcontentlangs := slice }}
|
|
{{- range $contentlangs }}
|
|
{{- $f := printf "/static/js/lunr/lunr.%s.min.js" . }}
|
|
{{- if partialCached "fileExists.hugo" $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}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" defer></script>
|
|
<script src="{{"js/lunr/lunr.min.js" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" defer></script>
|
|
<script src="{{"js/lunr/lunr.stemmer.support.min.js" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" defer></script>
|
|
<script src="{{"js/lunr/lunr.multi.min.js" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" defer></script>
|
|
{{- $tinyseg := false }}
|
|
{{- $wordcut := false }}
|
|
{{- range $contentlangs }}
|
|
{{- if and (not $tinyseg) (or (eq . "ja")) }}
|
|
{{- $tinyseg = true }}
|
|
<script src="{{"js/lunr/tinyseg.js" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" defer></script>
|
|
{{- end }}
|
|
{{- if and (not $wordcut) (or (eq . "hi") (eq . "th")) }}
|
|
{{- $wordcut = true }}
|
|
<script src="{{"js/lunr/wordcut.js" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" defer></script>
|
|
{{- end }}
|
|
{{- $file := (printf "js/lunr/lunr.%s.min.js" .) }}
|
|
<script src="{{ $file | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" defer></script>
|
|
{{- end }}
|
|
<script src="{{ "js/search.js" | relURL }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" defer></script> |