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
43 lines
1.3 KiB
HTML
43 lines
1.3 KiB
HTML
{{- partialCached "page-meta.hugo" . .RelPermalink }}
|
|
{{- partial "header.html" . }}
|
|
<article>
|
|
<header class="headline">
|
|
</header>
|
|
{{- $page := . }}
|
|
|
|
{{- $title := i18n .Data.Plural }}
|
|
{{- if not $title }}
|
|
{{- $title = .Data.Plural | humanize }}
|
|
{{- end }}
|
|
<h1 id="{{ $title | anchorize }}">{{ $title }}</h1>
|
|
{{- $lastCapital := "" }}
|
|
{{- range .Data.Terms.Alphabetical }}
|
|
{{- $capital := substr .Page.Title 0 1 | upper }}
|
|
{{- if ne $lastCapital $capital }}
|
|
{{- if ne $lastCapital "" }}
|
|
</ul>
|
|
{{- end }}
|
|
<h2 id="{{ $capital | anchorize }}">{{ $capital }}</h2>
|
|
<ul class="columnize">
|
|
{{- end }}
|
|
{{- $c:=""}}{{/* display terms of a taxonomy */}}
|
|
{{- $len := 0 }}
|
|
{{- range .Pages }}
|
|
{{- $c:=""}}{{/* count pages of term */}}
|
|
{{- if and .Title (or (ne (.Scratch.Get "relearnIsHiddenStem") true) (ne .Site.Params.disableTagHiddenPages true) ) }}
|
|
{{- $len = add $len 1 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- if $len }}
|
|
<li><a href="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" .Page) }}">{{ .Page.Title }}</a> ({{ $len }})</li>
|
|
{{- end }}
|
|
{{- $lastCapital = $capital }}
|
|
{{- end }}
|
|
{{- if ne $lastCapital "" }}
|
|
</ul>
|
|
{{- end }}
|
|
|
|
<footer class="footline">
|
|
</footer>
|
|
</article>
|
|
{{- partial "footer.html" . }} |