mirror of
https://github.com/docker/docs.git
synced 2026-04-05 10:48:55 +07:00
15 lines
511 B
HTML
15 lines
511 B
HTML
{{ $keywords := "" }}
|
|
{{ if .Keywords }}
|
|
{{ $keywords = .Keywords }}
|
|
{{ else }}
|
|
{{ $keywords = "docker, docker open source, docker platform, distributed applications, microservices, containers, docker containers, docker software, docker virtualization" }}
|
|
{{ with .File }}
|
|
{{ with (index (site.Data.frontmatter) .Path) }}
|
|
{{ with .keywords }}
|
|
{{ $keywords = strings.Replace . "\n" " " | strings.TrimRight " " }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ return $keywords }}
|