mirror of https://github.com/docker/docs.git
15 lines
351 B
HTML
15 lines
351 B
HTML
{{ $desc := "" }}
|
|
{{ if .Description }}
|
|
{{ $desc = .Description }}
|
|
{{ else }}
|
|
{{ $desc = .Summary }}
|
|
{{ with .File }}
|
|
{{ with (index (site.Data.frontmatter) .Path) }}
|
|
{{ with .description }}
|
|
{{ $desc = strings.Replace . "\n" " " | strings.TrimRight " " }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ return $desc }}
|