Files
docker-docs/layouts/partials/utils/keywords.html
2023-10-19 17:50:34 +02:00

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 }}