v0.3.0
* 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
This commit is contained in:
19
docs/themes/hugo-theme-relearn/layouts/partials/meta.html
vendored
Normal file
19
docs/themes/hugo-theme-relearn/layouts/partials/meta.html
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
|
||||
<meta charset="utf-8">
|
||||
{{- $c:=""}}{{/* to avoid that user swiping to the left leaves a gap on the right side, we set minimum-scale, even if not advised to */}}
|
||||
<meta name="viewport" content="height=device-height, width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
||||
{{- if (ne .Site.Params.disableGeneratorVersion true) }}
|
||||
{{- $gen := hugo.Generator }}
|
||||
{{- $gen = replaceRE "\\s*/>$" ">" $gen }}
|
||||
{{ $gen | safeHTML }}
|
||||
{{- $ver := partial "version.txt" }}
|
||||
{{- $ver := printf "<meta name=\"generator\" content=\"%s %s\">" "Relearn" $ver }}
|
||||
{{ $ver | safeHTML }}
|
||||
{{- end }}
|
||||
{{- if not (and .Title (or (ne (.Scratch.Get "relearnIsHiddenStem") true) (ne .Site.Params.disableSeoHiddenPages true) ) ) }}
|
||||
<meta name="robots" content="noindex, nofollow, noarchive, noimageindex">
|
||||
{{- end }}
|
||||
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}">
|
||||
{{- with .Site.Params.author }}
|
||||
<meta name="author" content="{{ . }}">
|
||||
{{- end }}
|
Reference in New Issue
Block a user