mirror of
https://github.com/tiennm99/hugoDocs.git
synced 2026-09-19 10:20:34 +00:00
13 lines
332 B
HTML
13 lines
332 B
HTML
{{- with .Params.action.aliases }}
|
|
{{- $label := "Alias" }}
|
|
{{- if gt (len .) 1 }}
|
|
{{- $label = "Aliases" }}
|
|
{{- end }}
|
|
<p class="font-bold text-dark dark:text-light mt-2">{{ $label }}</p>
|
|
{{- range . }}
|
|
<div class="font-sm font-mono ml-3 sm:ml-6 mt-0 sm:mt-1">
|
|
{{- . -}}
|
|
</div>
|
|
{{- end }}
|
|
{{- end -}}
|